mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
* Display wallet balance in default currency * Cleanups --------- Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
12 lines
391 B
C#
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; }
|
|
}
|
|
}
|