mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
12 lines
241 B
Dart
12 lines
241 B
Dart
class PaginationReply {
|
|
String? nextOffset;
|
|
|
|
PaginationReply({this.nextOffset});
|
|
|
|
factory PaginationReply.fromJson(Map<String, dynamic> json) {
|
|
return PaginationReply(
|
|
nextOffset: json['next_offset'] as String?,
|
|
);
|
|
}
|
|
}
|