mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
27 lines
695 B
C#
27 lines
695 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
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; }
|
|
}
|
|
}
|