cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
20 lines (19 loc) • 550 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InfoEntity = void 0;
var InfoEntity = /** @class */ (function () {
function InfoEntity(data) {
// #region Properties (6)
this.companyId = '';
this.containerId = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return InfoEntity;
}());
exports.InfoEntity = InfoEntity;