Remotely/Server/wwwroot/scripts/Models/CommandLineParameter.js
2021-07-29 07:54:01 -07:00

7 lines
177 B
JavaScript

export class CommandLineParameter {
constructor(name, value) {
this.Name = name;
this.Value = value;
}
}
//# sourceMappingURL=CommandLineParameter.js.map