btcpayserver/BTCPayServer.Data/Data/OffchainTransactionData.cs

13 lines
253 B
C#
Raw Normal View History

2020-06-28 21:44:35 -05:00
using System.ComponentModel.DataAnnotations;
2020-04-16 14:25:52 +09:00
namespace BTCPayServer.Data
{
public class OffchainTransactionData
{
[Key]
2020-06-28 17:55:27 +09:00
[MaxLength(32 * 2)]
2020-04-16 14:25:52 +09:00
public string Id { get; set; }
public byte[] Blob { get; set; }
}
}