@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
35 lines • 798 B
JavaScript
;
const BaseModel_1 = require("../BaseModel");
module.exports = class Procedure 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 description(value) {
this._description = value;
}
get description() {
return this._description;
}
set validityDays(value) {
this._validityDays = value;
}
get validityDays() {
return this._validityDays;
}
set integratedWithGAS(value) {
this._integratedWithGAS = value;
}
get integratedWithGAS() {
return this._integratedWithGAS;
}
};
//# sourceMappingURL=Procedure.js.map