Files
PiliPlus/lib/models_new/space/space_cheese/page.dart
bggRGjQaUbCoE 6d55321699 feat: member cheese
feat: fav pugv

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-08-07 12:58:19 +08:00

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?,
);
}