mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
14 lines
373 B
C#
14 lines
373 B
C#
|
using System;
|
||
|
using BTCPayServer.Services.Invoices;
|
||
|
|
||
|
namespace BTCPayServer.Components.StoreRecentInvoices;
|
||
|
|
||
|
public class StoreRecentInvoiceViewModel
|
||
|
{
|
||
|
public string InvoiceId { get; set; }
|
||
|
public string OrderId { get; set; }
|
||
|
public string AmountCurrency { get; set; }
|
||
|
public InvoiceState Status { get; set; }
|
||
|
public DateTimeOffset Date { get; set; }
|
||
|
}
|