10 lines
264 B
C#
10 lines
264 B
C#
namespace NATS.Server.JetStream.Models;
|
|
|
|
public sealed class StreamConfig
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public List<string> Subjects { get; set; } = [];
|
|
public int MaxMsgs { get; set; }
|
|
public int Replicas { get; set; } = 1;
|
|
}
|