UNPKG

cannoli-interfaces

Version:
21 lines (20 loc) 648 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MottuStoreMatrixEntity = void 0; var MottuStoreMatrixEntity = /** @class */ (function () { // #endregion Properties (1) // #region Constructors (1) function MottuStoreMatrixEntity(data) { // #region Properties (1) this.id = 0; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return MottuStoreMatrixEntity; }()); exports.MottuStoreMatrixEntity = MottuStoreMatrixEntity;