mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 17:16:29 +08:00
12 lines
255 B
Dart
12 lines
255 B
Dart
class PageInfo {
|
|
int? offset;
|
|
bool? hasMore;
|
|
|
|
PageInfo({this.offset, this.hasMore});
|
|
|
|
factory PageInfo.fromJson(Map<String, dynamic> json) => PageInfo(
|
|
offset: json['offset'] as int?,
|
|
hasMore: json['has_more'] as bool?,
|
|
);
|
|
}
|