Files
natsdotnet/src/NATS.Server/Configuration/LeafNodeOptions.cs
2026-02-23 05:43:04 -05:00

8 lines
162 B
C#

namespace NATS.Server.Configuration;
public sealed class LeafNodeOptions
{
public string Host { get; set; } = "0.0.0.0";
public int Port { get; set; }
}