btcpayserver/BTCPayServer.Data/Data/PayjoinLock.cs

17 lines
423 B
C#
Raw Normal View History

2020-06-28 21:44:35 -05:00
using System.ComponentModel.DataAnnotations;
2020-04-13 15:43:25 +09:00
namespace BTCPayServer.Data
{
/// <summary>
/// We represent the locks of the PayjoinRepository
/// with this table. (Both, our utxo we locked as part of a payjoin
/// and the utxo of the payer which were used to pay us)
/// </summary>
public class PayjoinLock
{
[Key]
[MaxLength(100)]
public string Id { get; set; }
}
}