mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
16 lines
366 B
C#
16 lines
366 B
C#
using System;
|
|
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; }
|
|
}
|
|
}
|