mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
17 lines
388 B
Dart
17 lines
388 B
Dart
class SpaceCheesePage {
|
|
bool? next;
|
|
int? num;
|
|
int? size;
|
|
int? total;
|
|
|
|
SpaceCheesePage({this.next, this.num, this.size, this.total});
|
|
|
|
factory SpaceCheesePage.fromJson(Map<String, dynamic> json) =>
|
|
SpaceCheesePage(
|
|
next: json['next'] as bool?,
|
|
num: json['num'] as int?,
|
|
size: json['size'] as int?,
|
|
total: json['total'] as int?,
|
|
);
|
|
}
|