mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 18:46:53 +08:00
18 lines
315 B
Dart
18 lines
315 B
Dart
class SpaceSsPage {
|
|
int? pageNum;
|
|
int? pageSize;
|
|
int? total;
|
|
|
|
SpaceSsPage({
|
|
this.pageNum,
|
|
this.pageSize,
|
|
this.total,
|
|
});
|
|
|
|
factory SpaceSsPage.fromJson(Map<String, dynamic> json) => SpaceSsPage(
|
|
pageNum: json["page_num"],
|
|
pageSize: json["page_size"],
|
|
total: json["total"],
|
|
);
|
|
}
|