mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
657423207b
* Dashboard: Load Lightning balance async, display default currency * Simplify approach, improve views and scripts * Async tiles Async tiles * Add period for app sales * Fix missing keypad view sales * Fix after rebase * Fix awaited call * Fix build Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
14 lines
468 B
C#
14 lines
468 B
C#
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; }
|
|
}
|