bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
14 lines • 368 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Item = void 0;
/**
* Clase base que contiene la información que todos los objetos de datos pueden necesitar.
*/
var Item = /** @class */ (function () {
function Item(id) {
this.id = id;
}
return Item;
}());
exports.Item = Item;
//# sourceMappingURL=item.js.map