mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
15 lines
399 B
C#
15 lines
399 B
C#
using System.Collections;
|
|
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; }
|
|
}
|