mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
Adjust the prior number of transactions metric as discussed with @pavlenex. We now show the number of paid invoices instead of transactions, as this metric is more meaningful. Closes #5300.
15 lines
466 B
C#
15 lines
466 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 TimeframeDays { get; set; } = 7;
|
|
public int? PaidInvoices { get; set; }
|
|
public int RefundsIssued { get; set; }
|
|
public bool InitialRendering { get; set; }
|
|
public string CryptoCode { get; set; }
|
|
}
|