22 lines
523 B
C#
22 lines
523 B
C#
using System.Collections.Generic;
|
|
|
|
namespace StellaOps.Signals.Models;
|
|
|
|
/// <summary>
|
|
/// Normalized callgraph node.
|
|
/// </summary>
|
|
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<string>? Evidence = null,
|
|
IReadOnlyDictionary<string, string?>? Analyzer = null,
|
|
string? CodeId = null);
|