coloquent-test2
Version:
Library for retrieving model objects from a JSON-API, with a fluent syntax inspired by Laravel Eloquent.
17 lines • 497 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Option = /** @class */ (function () {
function Option(parameter, value) {
this.parameter = parameter;
this.value = value;
}
Option.prototype.getParameter = function () {
return this.parameter;
};
Option.prototype.getValue = function () {
return this.value;
};
return Option;
}());
exports.Option = Option;
//# sourceMappingURL=Option.js.map