btcpayserver/BTCPayServer/Models/WalletViewModels/WalletModel.cs

20 lines
507 B
C#
Raw Normal View History

2018-07-26 22:32:24 +09:00
namespace BTCPayServer.Models.WalletViewModels
2018-02-13 03:27:36 +09:00
{
public class WalletModel
{
public string ServerUrl { get; set; }
public string CryptoCurrency
{
get;
set;
}
public string DefaultAddress { get; set; }
public string DefaultAmount { get; set; }
2018-07-26 23:23:28 +09:00
public decimal? Rate { get; set; }
public int Divisibility { get; set; }
public string Fiat { get; set; }
public string RateError { get; set; }
2018-02-13 03:27:36 +09:00
}
}