mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
11 lines
280 B
C#
11 lines
280 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; }
|
||
|
}
|
||
|
}
|