cecon-interfaces
Version:
Interfaces de Projetos Cecon
26 lines (25 loc) • 921 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioResumeCompanyEntity = void 0;
var resume_company_item_entity_1 = require("./resume-company-item.entity");
var PayioResumeCompanyEntity = /** @class */ (function () {
// #endregion Properties (5)
// #region Constructors (1)
function PayioResumeCompanyEntity(data) {
// #region Properties (5)
this.createdAt = new Date();
this.id = '';
this.item = new resume_company_item_entity_1.PayioResumeCompanyItemEntity();
this.items = [];
this.updatedAt = new Date();
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioResumeCompanyEntity;
}());
exports.PayioResumeCompanyEntity = PayioResumeCompanyEntity;