Innovenergy_trunk/csharp/Lib/SrcGen/Attributes/NestProperties.cs

8 lines
201 B
C#

namespace InnovEnergy.Lib.SrcGen.Attributes;
public class NestProperties : Attribute
{
public String StructName { get; }
public NestProperties(String structName) => StructName = structName;
}