11 lines
285 B
C#
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; }
|
|
}
|