mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-18 21:32:27 +01:00
43 lines
806 B
C#
43 lines
806 B
C#
using System;
|
|
using NBitpayClient;
|
|
|
|
namespace BTCPayServer.Security.Bitpay
|
|
{
|
|
public class BitTokenEntity
|
|
{
|
|
public string Value
|
|
{
|
|
get; set;
|
|
}
|
|
public string StoreId
|
|
{
|
|
get; set;
|
|
}
|
|
public string Label
|
|
{
|
|
get; set;
|
|
}
|
|
public DateTimeOffset PairingTime
|
|
{
|
|
get; set;
|
|
}
|
|
public string SIN
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public BitTokenEntity Clone(Facade facade)
|
|
{
|
|
return new BitTokenEntity()
|
|
{
|
|
Label = Label,
|
|
StoreId = StoreId,
|
|
PairingTime = PairingTime,
|
|
SIN = SIN,
|
|
Value = Value
|
|
};
|
|
}
|
|
}
|
|
}
|