mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-25 04:03:19 +00:00
16 lines
435 B
JavaScript
16 lines
435 B
JavaScript
class OrgAdminRepo {
|
|
constructor(object) {
|
|
this.repoID = object.repo_id;
|
|
this.repoName = object.repo_name;
|
|
this.ownerName = object.owner_name;
|
|
this.ownerEmail = object.owner_email;
|
|
this.size = object.size;
|
|
this.file_count = object.file_count;
|
|
this.encrypted = object.encrypted;
|
|
this.isDepartmentRepo = object.is_department_repo;
|
|
this.groupID = object.group_id;
|
|
}
|
|
}
|
|
|
|
export default OrgAdminRepo;
|