meowlang/parser/ConstraintDeclarationModel.cs

4 lines
229 B
C#
Raw Normal View History

2022-02-12 18:30:04 +01:00
namespace meowlang.parser;
public record ConstraintDeclarationModel
2022-02-12 18:30:04 +01:00
(Span Span, List<AttributeModel> Attributes, bool Pub, string Name, List<string> TypeNames, List<ConstraintRuleModel> Rules) : TopLevelConstructModel(Span);