namespace NATS.Server.LeafNodes; public sealed class LeafConnection { public string RemoteEndpoint { get; } public LeafConnection(string remoteEndpoint) { RemoteEndpoint = remoteEndpoint; } }