namespace StellaOps.AuditPack.Services; /// /// Feed snapshot data. /// public sealed record FeedSnapshotData { public bool Success { get; init; } public byte[]? Snapshot { get; init; } public DateTimeOffset? SnapshotAt { get; init; } public string? Error { get; init; } }