mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 09:19:24 +01:00
12 lines
442 B
C#
12 lines
442 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Components.StoreRecentTransactions;
|
|
|
|
public class StoreRecentTransactionsViewModel
|
|
{
|
|
public string StoreId { 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; }
|
|
}
|