8 lines
201 B
C#
8 lines
201 B
C#
|
namespace InnovEnergy.Lib.SrcGen.Attributes;
|
||
|
|
||
|
public class NestProperties : Attribute
|
||
|
{
|
||
|
public String StructName { get; }
|
||
|
|
||
|
public NestProperties(String structName) => StructName = structName;
|
||
|
}
|