@gsb-core/core
Version:
GSB core services and classes for platform-independent web applications
18 lines • 524 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GsbCategory = exports.GsbCategoryGroup = void 0;
class GsbCategoryGroup {
constructor(obj) {
Object.assign(this, obj);
this._entDefName = "GsbCategoryGroup";
}
}
exports.GsbCategoryGroup = GsbCategoryGroup;
class GsbCategory {
constructor(obj) {
Object.assign(this, obj);
this._entDefName = "GsbCategory";
}
}
exports.GsbCategory = GsbCategory;
//# sourceMappingURL=gsb-category.model.js.map