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