btcpayserver/BTCPayServer/Configuration/LightningNetworkOptions.cs
Andrew Camilleri 58d01738ab
More Options refactoring (#2179)
* More Options refactoring

Continues refactoring config classes to use the propert Options pattern where possible.
DataDirectories and DatabaseOptions are now configured the Options pattern and the BTCPayOptions is now moved alongside the other config setup

* Move COnfigure logic for Options to the Startup
2021-01-06 23:51:13 +09:00

12 lines
331 B
C#

using System.Collections.Generic;
using BTCPayServer.Lightning;
namespace BTCPayServer.Configuration
{
public class LightningNetworkOptions
{
public Dictionary<string, LightningConnectionString> InternalLightningByCryptoCode { get; set; } =
new Dictionary<string, LightningConnectionString>();
}
}