namespace meowlang.parser; public record StructDeclarationModel(Span Span, List Attributes, bool Pub, string Name, List TypeParameters, List Constraints, StructTypeModel Struct) : TopLevelConstructModel(Span);