mirror of
https://github.com/haiwen/seahub.git
synced 2025-10-01 01:32:22 +00:00
20 lines
552 B
JavaScript
20 lines
552 B
JavaScript
![]() |
|
||
|
class SysAdminAdminUser {
|
||
|
constructor(object) {
|
||
|
this.email = object.email;
|
||
|
this.name = object.name;
|
||
|
this.contact_email = object.contact_email;
|
||
|
this.login_id = object.login_id;
|
||
|
this.last_login = object.last_login;
|
||
|
this.create_time = object.create_time;
|
||
|
this.is_active = object.is_active;
|
||
|
this.is_staff = object.is_staff;
|
||
|
this.quota_total = object.quota_total;
|
||
|
this.quota_usage = object.quota_usage;
|
||
|
this.admin_role = object.admin_role;
|
||
|
this.isSelected = false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default SysAdminAdminUser;
|