mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
13 lines
404 B
C#
13 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; }
|
|
}
|