View Source
Assembly: Umbraco.Infrastructure.dll
[TableName("umbracoWebhook2Headers")]
public class Webhook2HeadersDto
Fields
View Source
Declaration
public const string TableName = "umbracoWebhook2Headers"
Field Value
Properties
View Source
Declaration
[Column("Key")]
public string Key { get; set; }
Property Value
View Source
Declaration
[Column("Value")]
public string Value { get; set; }
Property Value
View Source
Declaration
[Column("webhookId")]
[PrimaryKeyColumn(AutoIncrement = false, Name = "PK_headers2WebhookDto", OnColumns = "webhookId, key")]
[ForeignKey(typeof(WebhookDto), OnDelete = Rule.Cascade)]
public int WebhookId { get; set; }
Property Value