btcpayserver/BTCPayServer/Components/StoreRecentInvoices/StoreRecentInvoicesViewModel.cs

13 lines
405 B
C#
Raw Normal View History

using System.Collections.Generic;
using BTCPayServer.Data;
namespace BTCPayServer.Components.StoreRecentInvoices;
public class StoreRecentInvoicesViewModel
{
public StoreData Store { get; set; }
public IList<StoreRecentInvoiceViewModel> Invoices { get; set; } = new List<StoreRecentInvoiceViewModel>();
public bool InitialRendering { get; set; }
public string CryptoCode { get; set; }
}