mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
25 lines
891 B
C#
25 lines
891 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Lightning;
|
|
using BTCPayServer.Services.Rates;
|
|
using NBitcoin;
|
|
|
|
namespace BTCPayServer.Components.StoreLightningBalance;
|
|
|
|
public class StoreLightningBalanceViewModel
|
|
{
|
|
public string StoreId { get; set; }
|
|
public string CryptoCode { get; set; }
|
|
public string DefaultCurrency { get; set; }
|
|
public CurrencyData CurrencyData { get; set; }
|
|
public Money TotalOnchain { get; set; }
|
|
public LightMoney TotalOffchain { get; set; }
|
|
public LightningNodeBalance Balance { get; set; }
|
|
public string ProblemDescription { get; set; }
|
|
public bool InitialRendering { get; set; } = true;
|
|
public HistogramType Type { get; set; }
|
|
public IList<DateTimeOffset> Labels { get; set; }
|
|
public IList<decimal> Series { get; set; }
|
|
public string DataUrl { get; set; }
|
|
}
|