mirror of
https://github.com/haiwen/seahub.git
synced 2025-10-22 03:16:34 +00:00
9 lines
170 B
JavaScript
9 lines
170 B
JavaScript
![]() |
export default class Page {
|
||
|
constructor(object) {
|
||
|
this.id = object.id;
|
||
|
this.name = object.name;
|
||
|
this.path = object.path;
|
||
|
this.icon = object.icon;
|
||
|
}
|
||
|
}
|