mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
21 lines
569 B
C#
21 lines
569 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class UpdateLightningNetworkPaymentMethodRequest : LightningNetworkPaymentMethodBaseData
|
|
{
|
|
/// <summary>
|
|
/// Whether the payment method is enabled
|
|
/// </summary>
|
|
public bool Enabled { get; set; }
|
|
|
|
public UpdateLightningNetworkPaymentMethodRequest()
|
|
{
|
|
}
|
|
|
|
public UpdateLightningNetworkPaymentMethodRequest(string connectionString, bool enabled)
|
|
{
|
|
Enabled = enabled;
|
|
ConnectionString = connectionString;
|
|
}
|
|
}
|
|
}
|