using System.Collections.Generic; namespace StellaOps.Signals.Models; /// /// Normalized callgraph node. /// public sealed record CallgraphNode( string Id, string Name, string Kind, string? Namespace, string? File, int? Line, string? Purl = null, string? SymbolDigest = null, string? BuildId = null, string? Language = null, IReadOnlyList? Evidence = null, IReadOnlyDictionary? Analyzer = null, string? CodeId = null);