mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
* 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>
15 lines
468 B
C#
15 lines
468 B
C#
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Components.StoreNumbers;
|
|
|
|
public class StoreNumbersViewModel
|
|
{
|
|
public StoreData Store { get; set; }
|
|
public WalletId WalletId { get; set; }
|
|
public int PayoutsPending { get; set; }
|
|
public int? Transactions { get; set; }
|
|
public int RefundsIssued { get; set; }
|
|
public int TransactionDays { get; set; } = 7;
|
|
public bool InitialRendering { get; set; }
|
|
public string CryptoCode { get; set; }
|
|
}
|