2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-04-04 12:28:21 +00:00
Files
esiur-dotnet/Libraries/Esiur/Proxy/ResourceGeneratorFieldInfo.cs
2026-04-04 04:31:30 +03:00

12 lines
264 B
C#

using Microsoft.CodeAnalysis;
using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Proxy;
public struct ResourceGeneratorFieldInfo
{
public IFieldSymbol FieldSymbol { get; set; }
public string[] Attributes { get; set; }
}