UNPKG

cecon-interfaces

Version:
23 lines (22 loc) 643 B
"use strict"; // src/models/base.entity.ts Object.defineProperty(exports, "__esModule", { value: true }); exports.InfoEntity = void 0; var InfoEntity = /** @class */ (function () { function InfoEntity(data) { // #region Properties (6) this.companyId = ''; this.containerId = ''; this.containerName = ''; this.companyName = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return InfoEntity; }()); exports.InfoEntity = InfoEntity;