mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 16:46:22 +08:00
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user