mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
* Fix wallet balance for case crypto code == default currency * Handle old NBXplorer backend case * Cleanup
15 lines
493 B
C#
15 lines
493 B
C#
using BTCPayServer.Data;
|
|
using BTCPayServer.Lightning;
|
|
|
|
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; }
|
|
}
|