Remotely/Server/wwwroot/scripts/Models/CommandLineParameter.js
2019-12-22 18:29:31 -08:00

7 lines
177 B
JavaScript

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