btcpayserver/BTCPayServer.Data/Data/PlannedTransaction.cs

15 lines
355 B
C#
Raw Normal View History

2020-06-28 21:44:35 -05:00
using System;
2020-04-13 15:17:28 +09:00
using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Data
{
public class PlannedTransaction
{
[Key]
[MaxLength(100)]
public string Id { get; set; } // Id in the format [cryptocode]-[txid]
2020-04-13 15:17:28 +09:00
public DateTimeOffset BroadcastAt { get; set; }
public byte[] Blob { get; set; }
}
}