mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
12 lines
404 B
C#
12 lines
404 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Components.StoreRecentInvoices;
|
|
|
|
public class StoreRecentInvoicesViewModel
|
|
{
|
|
public string StoreId { get; set; }
|
|
public IList<StoreRecentInvoiceViewModel> Invoices { get; set; } = new List<StoreRecentInvoiceViewModel>();
|
|
public bool InitialRendering { get; set; }
|
|
public string CryptoCode { get; set; }
|
|
}
|