mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
51 lines
856 B
C#
51 lines
856 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class PairingCodeData
|
|
{
|
|
public string Id
|
|
{
|
|
get; set;
|
|
}
|
|
[Obsolete("Unused")]
|
|
public string Facade
|
|
{
|
|
get; set;
|
|
}
|
|
public string StoreDataId
|
|
{
|
|
get; set;
|
|
}
|
|
public DateTimeOffset Expiration
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Label
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string SIN
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public DateTime DateCreated
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string TokenValue
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|