13 lines
311 B
C#
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; }
|
|
}
|