btcpayserver/BTCPayServer/Components/WalletNav/WalletNavViewModel.cs

13 lines
391 B
C#
Raw Normal View History

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; }
}
}