mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
20 lines
507 B
C#
20 lines
507 B
C#
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class WalletModel
|
|
{
|
|
public string ServerUrl { get; set; }
|
|
public string CryptoCurrency
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string DefaultAddress { get; set; }
|
|
public string DefaultAmount { get; set; }
|
|
|
|
public decimal? Rate { get; set; }
|
|
public int Divisibility { get; set; }
|
|
public string Fiat { get; set; }
|
|
public string RateError { get; set; }
|
|
}
|
|
}
|