mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
17 lines
553 B
C#
17 lines
553 B
C#
|
using System.Collections.Generic;
|
||
|
using BTCPayServer.Data;
|
||
|
using BTCPayServer.Services.Wallets;
|
||
|
|
||
|
namespace BTCPayServer.Components.StoreWalletBalance;
|
||
|
|
||
|
public class StoreWalletBalanceViewModel
|
||
|
{
|
||
|
public decimal Balance { get; set; }
|
||
|
public string CryptoCode { get; set; }
|
||
|
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>();
|
||
|
}
|