add: Patchable items and frames

This commit is contained in:
h z
2025-03-04 11:58:14 +00:00
parent 9668c27e2d
commit f53c66a8ec
4 changed files with 176 additions and 3 deletions

14
src/InterfaceInfo.cs Normal file
View File

@@ -0,0 +1,14 @@
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace Polonium.Generators;
public class InterfaceInfo
{
public INamedTypeSymbol Symbol { get; set; }
public InterfaceDeclarationSyntax DeclarationSyntax { get; set; }
public string InterfaceName { get; set; }
public string InterfaceFillName { get; set; }
public string Namespace { get; set; }
public string Path { get; set; }
}