UNPKG

cecon-interfaces

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