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

8 lines
201 B
C#
Raw Normal View History

2023-06-13 11:03:09 +00:00
namespace InnovEnergy.Lib.SrcGen.Attributes;
public class NestProperties : Attribute
{
public String StructName { get; }
public NestProperties(String structName) => StructName = structName;
}