2020-06-28 21:44:35 -05:00
|
|
|
using System;
|
2018-02-13 03:27:36 +09:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
|
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;
|
|
|
|
}
|
2018-10-09 23:48:14 +09:00
|
|
|
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; }
|
2018-07-27 00:32:09 +09:00
|
|
|
public string RateError { get; set; }
|
2018-02-13 03:27:36 +09:00
|
|
|
}
|
|
|
|
}
|