Files
natsdotnet/src/NATS.Server/JetStream/Storage/FileStoreBlock.cs
2026-02-23 13:43:14 -05:00

11 lines
285 B
C#

namespace NATS.Server.JetStream.Storage;
public sealed class FileStoreBlock
{
public int Id { get; init; }
public required string Path { get; init; }
public ulong Sequence { get; init; }
public long OffsetBytes { get; init; }
public long SizeBytes { get; set; }
}