btcpayserver/BTCPayServer.Data/Data/AddressInvoiceData.cs

37 lines
759 B
C#
Raw Normal View History

2017-09-13 15:47:34 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Data
{
public class AddressInvoiceData
{
/// <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
{
get; set;
}
2017-09-13 15:47:34 +09:00
public InvoiceData InvoiceData
{
get; set;
}
2017-09-13 15:47:34 +09:00
public string InvoiceDataId
{
get; set;
}
public DateTimeOffset? CreatedTime
2017-11-06 00:31:02 -08:00
{
get; set;
}
}
2017-09-13 15:47:34 +09:00
}