mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
17 lines
423 B
C#
17 lines
423 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
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; }
|
|
}
|
|
}
|