Remotely/Remotely_Server/wwwroot/scripts/Models/CommandLineParameter.ts
Jared Goodwin 61fa16de4c Initial
2019-02-23 11:02:23 -08:00

8 lines
184 B
TypeScript

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