mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-24 11:06:51 +08:00
@@ -4,21 +4,21 @@ part 'last_watched_locator.g.dart';
|
||||
|
||||
@JsonSerializable()
|
||||
class LastWatchedLocator {
|
||||
@JsonKey(name: 'display_threshold')
|
||||
int? displayThreshold;
|
||||
@JsonKey(name: 'insert_ranking')
|
||||
int? insertRanking;
|
||||
String? text;
|
||||
@JsonKey(name: 'display_threshold')
|
||||
int? displayThreshold;
|
||||
@JsonKey(name: 'insert_ranking')
|
||||
int? insertRanking;
|
||||
String? text;
|
||||
|
||||
LastWatchedLocator({
|
||||
this.displayThreshold,
|
||||
this.insertRanking,
|
||||
this.text,
|
||||
});
|
||||
LastWatchedLocator({
|
||||
this.displayThreshold,
|
||||
this.insertRanking,
|
||||
this.text,
|
||||
});
|
||||
|
||||
factory LastWatchedLocator.fromJson(Map<String, dynamic> json) {
|
||||
return _$LastWatchedLocatorFromJson(json);
|
||||
}
|
||||
factory LastWatchedLocator.fromJson(Map<String, dynamic> json) {
|
||||
return _$LastWatchedLocatorFromJson(json);
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() => _$LastWatchedLocatorToJson(this);
|
||||
Map<String, dynamic> toJson() => _$LastWatchedLocatorToJson(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user