Files
git.stella-ops.org/src/Scanner/StellaOps.Scanner.Worker/Processing/Replay/ReplaySealedBundleMetadata.cs
StellaOps Bot 8abbf9574d up
2025-11-27 21:10:06 +02:00

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);