btcpayserver/BTCPayServer.Data/Data/WebhookData.cs

16 lines
356 B
C#
Raw Normal View History

2020-11-06 20:42:26 +09:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Data
{
public class WebhookData
{
[Key]
[MaxLength(25)]
public string Id { get; set; }
2020-11-06 20:42:26 +09:00
[Required]
public byte[] Blob { get; set; }
public List<WebhookDeliveryData> Deliveries { get; set; }
}
}