mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
13 lines
404 B
C#
13 lines
404 B
C#
|
using System.Collections;
|
||
|
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; }
|
||
|
}
|