class Permission { constructor({ id, name, description, is_active }) { this.id = id; this.name = name; this.description = description; this.is_active = is_active; } } module.exports = Permission;