9 lines
224 B
C#
9 lines
224 B
C#
namespace NATS.Server.Configuration;
|
|
|
|
public sealed class JetStreamOptions
|
|
{
|
|
public string StoreDir { get; set; } = string.Empty;
|
|
public long MaxMemoryStore { get; set; }
|
|
public long MaxFileStore { get; set; }
|
|
}
|