Remotely/Remotely_Server/wwwroot/scripts/Models/Parameter.ts
Jared Goodwin 8debc4bad5 Initial
2021-07-29 07:53:41 -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;
}