Remotely/Server/wwwroot/scripts/Models/Parameter.ts
Jared Goodwin 10ec413b7d WIP
2021-07-29 07:53:54 -07:00

12 lines
326 B
TypeScript

/**A parameter definition for Command Completion. */
export class Parameter {
constructor(name:string, summary:string, parameterType:string) {
this.Name = name;
this.Summary = summary;
this.ParameterType = parameterType;
}
Name: string;
Summary: string;
ParameterType: string;
}