using System.Collections.Generic; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; using ProxyInterfaceSourceGenerator.SyntaxReceiver; namespace ProxyInterfaceSourceGenerator { internal record Context { public GeneratorExecutionContext GeneratorExecutionContext { get; init; } // public List GeneratedData { get; } = new List(); public IDictionary CandidateInterfaces { get; init; } = default!; public Dictionary ReplacedTypes { get; } = new Dictionary(); } }