mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 08:36:17 +08:00
11
lib/models_new/reply/pagination_reply.dart
Normal file
11
lib/models_new/reply/pagination_reply.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class PaginationReply {
|
||||
String? nextOffset;
|
||||
|
||||
PaginationReply({this.nextOffset});
|
||||
|
||||
factory PaginationReply.fromJson(Map<String, dynamic> json) {
|
||||
return PaginationReply(
|
||||
nextOffset: json['next_offset'] as String?,
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user