mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
16 lines
411 B
C#
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);
|
|
}
|
|
}
|
|
}
|