btcpayserver/BTCPayServer/Payments/Coinswitch/CoinswitchSettings.cs
2020-06-28 17:55:27 +09:00

16 lines
411 B
C#

namespace BTCPayServer.Payments.CoinSwitch
{
public class CoinSwitchSettings
{
public string MerchantId { get; set; }
public string Mode { get; set; }
public bool Enabled { get; set; }
public decimal AmountMarkupPercentage { get; set; }
public bool IsConfigured()
{
return
!string.IsNullOrEmpty(MerchantId);
}
}
}