mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
31 lines
500 B
C#
31 lines
500 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class AddressInvoiceData
|
|
{
|
|
public string Address
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public InvoiceData InvoiceData
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string InvoiceDataId
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public DateTimeOffset? CreatedTime
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|