mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
24 lines
593 B
C#
24 lines
593 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 decimal? Rate { get; set; }
|
|
public int Divisibility { get; set; }
|
|
public string Fiat { get; set; }
|
|
public string RateError { get; set; }
|
|
}
|
|
}
|