UNPKG

mobyo-interfaces

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