using System.Collections.Generic; using Microsoft.CodeAnalysis; namespace ProxyInterfaceSourceGenerator { internal record Context { public GeneratorExecutionContext GeneratorExecutionContext { get; init; } public List GeneratedData { get; } = new List(); } }