12 lines
218 B
C#
12 lines
218 B
C#
namespace NATS.Server.LeafNodes;
|
|
|
|
public sealed class LeafConnection
|
|
{
|
|
public string RemoteEndpoint { get; }
|
|
|
|
public LeafConnection(string remoteEndpoint)
|
|
{
|
|
RemoteEndpoint = remoteEndpoint;
|
|
}
|
|
}
|