Files
git.stella-ops.org/src/__Libraries/StellaOps.AuditPack/Services/FeedSnapshotData.cs

13 lines
311 B
C#

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