namespace InnovEnergy.Lib.SrcGen.Attributes;

public class NestProperties : Attribute
{
    public String StructName { get; }

    public NestProperties(String structName) => StructName = structName;
}