UNPKG

mobyo-interfaces

Version:
24 lines (23 loc) 705 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ProductNcmEntity = void 0; var ProductNcmEntity = /** @class */ (function () { // #endregion Properties (3) // #region Constructors (1) function ProductNcmEntity(data) { // #region Properties (3) this.code = ''; this.description = ''; this.fullDescription = ''; this.ex = null; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return ProductNcmEntity; }()); exports.ProductNcmEntity = ProductNcmEntity;