btcpayserver/BTCPayServer/Configuration/LightningNetworkOptions.cs

11 lines
264 B
C#
Raw Normal View History

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