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

8 lines
184 B
TypeScript

export class CommandLineParameter {
constructor(name: string, value: string) {
this.Name = name;
this.Value = value;
}
Name: string;
Value: string;
}