Revert "GreenField API: Configure Store Lightning Payment Method"

This reverts commit b40095f603.
This commit is contained in:
nicolas.dorier
2021-01-17 21:40:16 +09:00
parent 07de4af581
commit df52d01a1d
7 changed files with 6 additions and 737 deletions

View File

@@ -1,28 +0,0 @@
namespace BTCPayServer.Client.Models
{
public class LightningNetworkPaymentMethodData
{
/// <summary>
/// Whether the payment method is enabled
/// </summary>
public bool Enabled { get; set; }
/// <summary>
/// Crypto code of the payment method
/// </summary>
public string CryptoCode { get; set; }
public string ConnectionString { get; set; }
public LightningNetworkPaymentMethodData()
{
}
public LightningNetworkPaymentMethodData(string cryptoCode, string connectionString, bool enabled)
{
Enabled = enabled;
CryptoCode = cryptoCode;
ConnectionString = connectionString;
}
}
}