namespace NATS.Server.Configuration; public sealed class ClusterOptions { public string? Name { get; set; } public string Host { get; set; } = "0.0.0.0"; public int Port { get; set; } = 6222; public int PoolSize { get; set; } = 3; public List Routes { get; set; } = []; }