mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
b71fd1653e
closes #728
29 lines
946 B
C#
29 lines
946 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Runtime.InteropServices;
|
|
using BTCPayServer.Payments;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
{
|
|
public class UpdateChangellySettingsViewModel
|
|
{
|
|
[Required] public string ApiKey { get; set; }
|
|
|
|
[Required] public string ApiSecret { get; set; }
|
|
|
|
[Required] public string ApiUrl { get; set; } = "https://api.changelly.com";
|
|
|
|
[Display(Name = "Optional, Changelly Merchant Id")]
|
|
public string ChangellyMerchantId { get; set; }
|
|
|
|
[Required]
|
|
[Range(0, 100)]
|
|
[Display(Name =
|
|
"Percentage to multiply amount requested at Changelly to avoid underpaid situations due to Changelly not guaranteeing rates. ")]
|
|
public decimal AmountMarkupPercentage { get; set; } = new decimal(2);
|
|
|
|
public bool Enabled { get; set; }
|
|
}
|
|
}
|