using NBitcoin; namespace BTCPayServer.Client.Models { public class UpdateOnChainPaymentMethodRequest : OnChainPaymentMethodBaseData { /// /// Whether the payment method is enabled /// public bool Enabled { get; set; } public UpdateOnChainPaymentMethodRequest() { } public UpdateOnChainPaymentMethodRequest(bool enabled, string derivationScheme, string label, RootedKeyPath accountKeyPath) { Enabled = enabled; Label = label; AccountKeyPath = accountKeyPath; DerivationScheme = derivationScheme; } } }