@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
29 lines • 580 B
JavaScript
;
const BaseModel_1 = require("../BaseModel");
module.exports = class CctvProxy extends BaseModel_1.BaseModel {
set id(value) {
this._id = value;
}
get id() {
return this._id;
}
set name(value) {
this._name = value;
}
get name() {
return this._name;
}
set host(value) {
this._host = value;
}
get host() {
return this._host;
}
set port(value) {
this._port = value;
}
get port() {
return this._port;
}
};
//# sourceMappingURL=CctvProxy.js.map