Remotely/Remotely_Server/wwwroot/scripts/Models/Parameter.js
Jared Goodwin 8debc4bad5 Initial
2021-07-29 07:53:41 -07:00

9 lines
273 B
JavaScript

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