mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 00:26:18 +08:00
14 lines
267 B
Dart
14 lines
267 B
Dart
class Cursor {
|
|
bool? isEnd;
|
|
int? id;
|
|
int? time;
|
|
|
|
Cursor({this.isEnd, this.id, this.time});
|
|
|
|
factory Cursor.fromJson(Map<String, dynamic> json) => Cursor(
|
|
isEnd: json['is_end'] as bool?,
|
|
id: json['id'] as int?,
|
|
time: json['time'] as int?,
|
|
);
|
|
}
|