11 lines
301 B
C#
11 lines
301 B
C#
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<string> Routes { get; set; } = [];
|
|
}
|