12 lines
395 B
C#
12 lines
395 B
C#
namespace StellaOps.Scanner.Worker.Processing.Replay;
|
|
|
|
/// <summary>
|
|
/// Captures sealed replay bundle metadata supplied via the job lease.
|
|
/// Used to keep analyzer execution hermetic and to emit Merkle metadata downstream.
|
|
/// </summary>
|
|
public sealed record ReplaySealedBundleMetadata(
|
|
string ManifestHash,
|
|
string BundleUri,
|
|
string? PolicySnapshotId,
|
|
string? FeedSnapshotId);
|