cecon-interfaces
Version:
Interfaces de Projetos Cecon
22 lines (21 loc) • 687 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioUserSessionEntity = void 0;
var PayioUserSessionEntity = /** @class */ (function () {
function PayioUserSessionEntity(data) {
this.appId = '';
this.companyId = null;
this.companyName = null;
this.machineUid = '';
this.lastAccessAt = new Date();
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioUserSessionEntity;
}());
exports.PayioUserSessionEntity = PayioUserSessionEntity;