mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
23 lines (22 loc) • 652 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioTabEntity = void 0;
var PayioTabEntity = /** @class */ (function () {
function PayioTabEntity(data) {
this.active = true;
this.createdAt = new Date();
this.id = '';
this.name = '';
this.tags = [];
this.updatedAt = new Date();
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioTabEntity;
}());
exports.PayioTabEntity = PayioTabEntity;