Remotely/Server/wwwroot/scripts/Models/CommandLineParameter.ts
Jared Goodwin 10ec413b7d WIP
2021-07-29 07:53:54 -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;
}