e-commercee
Version:
This package contains a backend of what would be the logic of a e-commercee software, the architecture used is made in 3 layers
25 lines • 632 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DTCategory = void 0;
class DTCategory {
constructor(pname, pdescription) {
this._name = "";
this._description = "";
this.name = pname;
this.description = pdescription;
}
get name() {
return this._name;
}
set name(value) {
this._name = value;
}
get description() {
return this._description;
}
set description(value) {
this._description = value;
}
}
exports.DTCategory = DTCategory;
//# sourceMappingURL=DTCategory.js.map