1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-27 07:44:50 +00:00
Files
seahub/frontend/src/models/group.js

15 lines
362 B
JavaScript
Raw Normal View History

2018-12-08 08:37:18 +08:00
class Group {
constructor(object) {
this.id= object.id;
this.name = object.name;
this.owner = object.owner;
this.admins = object.admins;
this.avatar_url = object.avatar_url;
this.created_at = object.created_at;
this.parent_group_id = object.parent_group_id;
this.wiki_enabled = object.wiki_enabled;
}
}
export default Group;