btcpayserver/BTCPayServer/Components/StoreRecentTransactions/StoreRecentTransactionsViewModel.cs

14 lines
468 B
C#
Raw Normal View History

using System.Collections.Generic;
using BTCPayServer.Data;
namespace BTCPayServer.Components.StoreRecentTransactions;
public class StoreRecentTransactionsViewModel
{
public StoreData Store { get; set; }
public IList<StoreRecentTransactionViewModel> Transactions { get; set; } = new List<StoreRecentTransactionViewModel>();
public WalletId WalletId { get; set; }
public bool InitialRendering { get; set; }
public string CryptoCode { get; set; }
}