mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-06-27 13:33:13 +00:00
Source Generation
This commit is contained in:
21
Esiur/Proxy/ResourceGeneratorClassInfo.cs
Normal file
21
Esiur/Proxy/ResourceGeneratorClassInfo.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using Microsoft.CodeAnalysis;
|
||||
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Esiur.Proxy
|
||||
{
|
||||
public struct ResourceGeneratorClassInfo
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public bool ImplementInterface { get; set; }
|
||||
|
||||
public bool ImplementTrigger { get; set; }
|
||||
public IFieldSymbol[] Fields { get; set; }
|
||||
public ITypeSymbol ClassSymbol { get; set; }
|
||||
|
||||
public ClassDeclarationSyntax ClassDeclaration { get; set; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user