CentralBackend/models/Permission.js
2025-09-07 12:44:01 +02:00

11 lines
217 B
JavaScript

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;