8 lines
169 B
C#
8 lines
169 B
C#
namespace NATS.Server.JetStream.Publish;
|
|
|
|
public sealed class PublishOptions
|
|
{
|
|
public string? MsgId { get; init; }
|
|
public ulong ExpectedLastSeq { get; init; }
|
|
}
|