mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
* GreenField: Cross-implemenation Lightning Node API * switch to hard unrsstricted check * fix * set LightningPrivateRouteHints in swagger + stores api * add priv route hint * rename models and add swagger defs to models
11 lines
266 B
C#
11 lines
266 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class ConnectToNodeRequest
|
|
{
|
|
public string NodeInfo { get; set; }
|
|
public string NodeId { get; set; }
|
|
public string NodeHost { get; set; }
|
|
public int NodePort { get; set; }
|
|
}
|
|
}
|