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