Skip to content

Commit 8ace1e0

Browse files
Persistence models: Fix incorrect webhook DTO (#21736)
Fix incorrect webhook dto
1 parent 4ce56e4 commit 8ace1e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Umbraco.Infrastructure/Persistence/Dtos/WebhookDto.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ internal sealed class WebhookDto
4848

4949
[ResultColumn]
5050
[Reference(ReferenceType.Many, ReferenceMemberName = Webhook2HeadersDto.ReferenceMemberName)]
51-
public List<Webhook2ContentTypeKeysDto> Webhook2Headers { get; set; } = new();
51+
public List<Webhook2HeadersDto> Webhook2Headers { get; set; } = new();
5252
}
5353

0 commit comments

Comments
 (0)