mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
25 lines (24 loc) • 788 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CompanyRemoteAccessEntity = void 0;
var CompanyRemoteAccessEntity = /** @class */ (function () {
// #endregion Properties (5)
// #region Constructors (1)
function CompanyRemoteAccessEntity(data) {
// #region Properties (5)
this.active = true;
this.code = '';
this.domain = '';
this.remoteIp = '';
this.updatedAt = new Date();
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return CompanyRemoteAccessEntity;
}());
exports.CompanyRemoteAccessEntity = CompanyRemoteAccessEntity;