UNPKG

mobyo-interfaces

Version:
22 lines (21 loc) 805 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CompanyCustomDataEntity = void 0; var company_remote_access_entity_1 = require("./company-remote-access.entity"); var CompanyCustomDataEntity = /** @class */ (function () { // #endregion Properties (1) // #region Constructors (1) function CompanyCustomDataEntity(data) { // #region Properties (1) this.remoteAccess = new company_remote_access_entity_1.CompanyRemoteAccessEntity(); if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return CompanyCustomDataEntity; }()); exports.CompanyCustomDataEntity = CompanyCustomDataEntity;