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