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

4 lines
235 B
C#

namespace meowlang.parser;
public record ConstraintTopLevelConstructModel
(Span Span, List<AttributeModel> Attributes, bool Pub, string Name, List<string> TypeNames, List<ConstraintRuleModel> Rules) : TopLevelConstructModel(Span);