btcpayserver/BTCPayServer/Payments/Coinswitch/CoinswitchSettings.cs
2019-03-31 18:55:14 +02:00

16 lines
419 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);
}
}
}