meowlang/parser/StructTopLevelConstructModel.cs
2022-02-12 18:30:04 +01:00

4 lines
261 B
C#

namespace meowlang.parser;
public record StructTopLevelConstructModel(Span Span, List<AttributeModel> Attributes, bool Pub, string Name, List<string> TypeParameters,
List<ConstraintModel> Constraints, StructTypeModel Struct) : TopLevelConstructModel(Span);