btcpayserver/BTCPayServer/Components/WalletNav/WalletNavViewModel.cs
Vincent Bouzon 8c9f325c9f
Display wallet balance in default currency (#5281)
* Display wallet balance in default currency

* Cleanups

---------

Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
2023-09-01 15:29:41 +09:00

12 lines
391 B
C#

namespace BTCPayServer.Components.WalletNav
{
public class WalletNavViewModel
{
public WalletId WalletId { get; set; }
public BTCPayNetwork Network { get; set; }
public string Label { get; set; }
public string Balance { get; set; }
public string BalanceDefaultCurrency { get; set; }
public string DefaultCurrency { get; set; }
}
}