namespace StellaOps.Policy.Unknowns.Models; /// /// Represents the dependency graph impact of an unknown package. /// Data sourced from scanner call graph analysis. /// public sealed record BlastRadius { /// /// Number of packages that directly or transitively depend on this package. /// 0 indicates isolation. /// public int Dependents { get; init; } /// /// Whether this package is reachable from network-facing entrypoints. /// True indicates higher risk. /// public bool NetFacing { get; init; } /// /// Privilege level under which this package typically runs. /// Expected values: root, user, none. /// public string? Privilege { get; init; } }