mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
12 lines
331 B
C#
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>();
|
||
|
}
|
||
|
}
|