2017-09-13 15:47:34 +09:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Data
|
|
|
|
|
{
|
2019-08-30 00:24:42 +09:00
|
|
|
|
public class AddressInvoiceData
|
2017-10-27 17:53:04 +09:00
|
|
|
|
{
|
2019-08-30 00:24:42 +09:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Some crypto currencies share same address prefix
|
|
|
|
|
/// For not having exceptions thrown by two address on different network, we suffix by "#CRYPTOCODE"
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Obsolete("Use GetHash instead")]
|
|
|
|
|
public string Address
|
2017-10-27 17:53:04 +09:00
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2017-09-13 15:47:34 +09:00
|
|
|
|
|
2017-10-27 17:53:04 +09:00
|
|
|
|
public InvoiceData InvoiceData
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2017-09-13 15:47:34 +09:00
|
|
|
|
|
2019-08-30 00:24:42 +09:00
|
|
|
|
public string InvoiceDataId
|
2017-10-27 17:53:04 +09:00
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2019-08-30 00:24:42 +09:00
|
|
|
|
|
|
|
|
|
public DateTimeOffset? CreatedTime
|
2017-11-06 00:31:02 -08:00
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2019-08-30 00:24:42 +09:00
|
|
|
|
|
2017-10-27 17:53:04 +09:00
|
|
|
|
}
|
2017-09-13 15:47:34 +09:00
|
|
|
|
}
|