BadScript 2
Loading...
Searching...
No Matches
BadParameterMetaData.cs
Go to the documentation of this file.
1namespace BadScript2.Parser;
2
7{
11 public readonly string Description;
12
16 public readonly string Type;
17
23 public BadParameterMetaData(string type, string description)
24 {
25 Type = type;
26 Description = description;
27 }
28}
Implements a Meta Data container for a parameter.
readonly string Type
The Type of the Parameter.
BadParameterMetaData(string type, string description)
Creates a new Parameter Meta Data Object.
readonly string Description
The Description of the Parameter.
Contains the Parser for the BadScript2 Language.