Files
PiliPlus/lib/models_new/space/space_archive/cursor_attr.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

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?,
);
}