11 lines
217 B
JavaScript
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;
|