mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 18:46:53 +08:00
11
lib/models_new/space/space_archive/cursor_attr.dart
Normal file
11
lib/models_new/space/space_archive/cursor_attr.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user