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