using Microsoft.CodeAnalysis; namespace ProxyInterfaceSourceGenerator.Models; internal record ClassSymbol(INamedTypeSymbol Symbol, List BaseTypes, List Interfaces) { public override string ToString() { return Symbol.ToDisplayString(NullableFlowState.None, SymbolDisplayFormat.FullyQualifiedFormat); } }