mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-14 05:05:58 +00:00
13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
|
class CustomPermission {
|
||
|
|
||
|
constructor(object) {
|
||
|
this.id = object.id;
|
||
|
this.name = object.name;
|
||
|
this.description = object.description;
|
||
|
this.permission = object.permission;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default CustomPermission;
|