RECORD ClassInfo
- Namespace: SuCoS.Models.APIModels
- Source File: ClassInfo.cs
Represents information about a class, including its name, namespace, source file, type kind, public methods, properties, fields, enum values, and accompanying documentation.
Properties
PublicMethods
(ListPublicMethods ?? new(): Represents a collection of public method definitions associated with the class.
Properties
(ListProperties ?? new(): Represents a collection of property definitions associated with the class.
Fields
(ListFields ?? new(): Maintains a collection of field definitions associated with the class.
EnumValues
(ListEnumValues ?? new(): Contains information regarding the values of an enumerated type defined in the class.
ClassDocumentation
(DocumentationInfo) = ClassDocumentation ?? new(): Represents the documentation information associated with a class, struct, enum, or record in the source code.