mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* Add dashboard and chart basics * More widgets * Make widgets responsive * Layout dashboard * Prepare ExplorerClient * Switch to Chartist * Dynamic data for store numbers and recent transactions tiles * Dynamic data for recent invoices tile * Improvements * Plug NBXPlorer DB * Properly filter by code * Reorder cheat mode button * AJAX update for graph data * Fix create invoice button * Retry connection on transient issues * App Top Items stats * Design updates * App Sales stats * Add points for weekly histogram, set last point to current balance Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
16 lines
553 B
C#
16 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>();
|
|
}
|