namespace BTCPayServer.Client.Models { public class OnChainPaymentMethodData : OnChainPaymentMethodBaseData { /// /// Whether the payment method is enabled /// public bool Enabled { get; set; } /// /// Crypto code of the payment method /// public string CryptoCode { get; set; } public OnChainPaymentMethodData() { } public OnChainPaymentMethodData(string cryptoCode, string derivationScheme, bool enabled) { Enabled = enabled; CryptoCode = cryptoCode; DerivationScheme = derivationScheme; } } }