2017-10-06 10:37:38 +09:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Data
|
|
|
|
|
{
|
2017-10-27 17:53:04 +09:00
|
|
|
|
public class AddressInvoiceData
|
|
|
|
|
{
|
|
|
|
|
public string Address
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2017-10-06 10:37:38 +09:00
|
|
|
|
|
2017-10-27 17:53:04 +09:00
|
|
|
|
public InvoiceData InvoiceData
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2017-10-06 10:37:38 +09:00
|
|
|
|
|
2017-10-27 17:53:04 +09:00
|
|
|
|
public string InvoiceDataId
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2017-10-25 01:41:01 +09:00
|
|
|
|
|
2017-10-27 17:53:04 +09:00
|
|
|
|
public DateTimeOffset? CreatedTime
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-10-06 10:37:38 +09:00
|
|
|
|
}
|