Files
PiliPlus/lib/models_new/space/space_archive/cursor_attr.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

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