namespace NATS.Server.Configuration; public sealed class GatewayOptions { public string? Name { get; set; } public string Host { get; set; } = "0.0.0.0"; public int Port { get; set; } public List Remotes { get; set; } = []; }