mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 01:53:52 +01:00
* Update Lightning lib * Refactoring: Move Lightning methods and props to ExternalServices * Rename Lightning services * Add Lightning balance to dashboard * Split Lightning dashboard tiles * View updates
18 lines
597 B
C#
18 lines
597 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Data;
|
|
using BTCPayServer.Lightning;
|
|
using BTCPayServer.Models;
|
|
using BTCPayServer.Models.StoreViewModels;
|
|
|
|
namespace BTCPayServer.Components.StoreLightningBalance;
|
|
|
|
public class StoreLightningBalanceViewModel
|
|
{
|
|
public string CryptoCode { get; set; }
|
|
public StoreData Store { get; set; }
|
|
public WalletId WalletId { get; set; }
|
|
public LightMoney TotalOnchain { get; set; }
|
|
public LightMoney TotalOffchain { get; set; }
|
|
public LightningNodeBalance Balance { get; set; }
|
|
public string ProblemDescription { get; set; }
|
|
}
|