2022-04-12 09:55:10 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using BTCPayServer.Data;
|
2022-06-15 13:03:24 +05:30
|
|
|
using BTCPayServer.Services.Rates;
|
2022-04-12 09:55:10 +02:00
|
|
|
using BTCPayServer.Services.Wallets;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Components.StoreWalletBalance;
|
|
|
|
|
|
|
|
public class StoreWalletBalanceViewModel
|
|
|
|
{
|
2022-04-30 12:56:05 +09:00
|
|
|
public decimal? Balance { get; set; }
|
2022-04-12 09:55:10 +02:00
|
|
|
public string CryptoCode { get; set; }
|
2022-06-15 13:03:24 +05:30
|
|
|
public string DefaultCurrency { get; set; }
|
|
|
|
public CurrencyData CurrencyData { get; set; }
|
2022-04-12 09:55:10 +02:00
|
|
|
public StoreData Store { get; set; }
|
|
|
|
public WalletId WalletId { get; set; }
|
|
|
|
public WalletHistogramType Type { get; set; }
|
|
|
|
public IList<string> Labels { get; set; } = new List<string>();
|
|
|
|
public IList<decimal> Series { get; set; } = new List<decimal>();
|
|
|
|
}
|