mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
13 lines
253 B
C#
13 lines
253 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class OffchainTransactionData
|
|
{
|
|
[Key]
|
|
[MaxLength(32 * 2)]
|
|
public string Id { get; set; }
|
|
public byte[] Blob { get; set; }
|
|
}
|
|
}
|