Files
git.stella-ops.org/src/__Libraries/StellaOps.Evidence/Models/ReachabilityEvidence.cs
2026-02-04 19:59:20 +02:00

21 lines
407 B
C#

using System.Collections.Immutable;
namespace StellaOps.Evidence.Models;
public sealed record ReachabilityEvidence(
string ProofId,
string VulnerabilityId,
string ComponentPurl,
ReachabilityStatus Status,
string? EntryPoint,
ImmutableArray<string> CallPath,
string Digest);
public enum ReachabilityStatus
{
Reachable,
NotReachable,
Inconclusive,
NotAnalyzed
}