10 lines
251 B
C#
10 lines
251 B
C#
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<string> Remotes { get; set; } = [];
|
|
}
|