Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-17 18:08:55 +08:00
parent 906c21e252
commit 1d4eabb770
58 changed files with 875 additions and 684 deletions

View File

@@ -4,15 +4,15 @@ part 'cursor_attr.g.dart';
@JsonSerializable()
class CursorAttr {
@JsonKey(name: 'is_last_watched_arc')
bool? isLastWatchedArc;
int? rank;
@JsonKey(name: 'is_last_watched_arc')
bool? isLastWatchedArc;
int? rank;
CursorAttr({this.isLastWatchedArc, this.rank});
CursorAttr({this.isLastWatchedArc, this.rank});
factory CursorAttr.fromJson(Map<String, dynamic> json) {
return _$CursorAttrFromJson(json);
}
factory CursorAttr.fromJson(Map<String, dynamic> json) {
return _$CursorAttrFromJson(json);
}
Map<String, dynamic> toJson() => _$CursorAttrToJson(this);
Map<String, dynamic> toJson() => _$CursorAttrToJson(this);
}