mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
19 lines
507 B
C#
19 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; }
|
|
}
|
|
}
|