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