mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 01:53:52 +01:00
30 lines
509 B
C#
30 lines
509 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class HistoricalAddressInvoiceData
|
|
{
|
|
public string InvoiceDataId
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string Address
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public DateTimeOffset Assigned
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public DateTimeOffset? UnAssigned
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|