mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
12 lines
326 B
TypeScript
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;
|
|
} |