btcpayserver/BTCPayServer.Data/Data/PlannedTransaction.cs

16 lines
363 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)]
// Id in the format [cryptocode]-[txid]
public string Id { get; set; }
public DateTimeOffset BroadcastAt { get; set; }
public byte[] Blob { get; set; }
}
}