11 lines
334 B
C#
11 lines
334 B
C#
using System.Collections.Generic;
|
|
|
|
namespace StellaOps.Scanner.Worker.Determinism;
|
|
|
|
/// <summary>
|
|
/// Deterministic metadata for a surface manifest: per-payload hashes and a Merkle-like root.
|
|
/// </summary>
|
|
public sealed record DeterminismEvidence(
|
|
IReadOnlyDictionary<string, string> PayloadHashes,
|
|
string MerkleRootSha256);
|