using System.IO; namespace StellaOps.Signals.Storage.Models; /// /// Context required to persist a callgraph artifact. /// public sealed record CallgraphArtifactSaveRequest( string Language, string Component, string Version, string FileName, string ContentType, string Hash, Stream? ManifestContent);