feat(explore): add AniList, Simkl, and Plex catalogs

This commit is contained in:
edde746
2026-07-20 10:28:31 +02:00
parent f8cb550be7
commit e32fcc2190
78 changed files with 4327 additions and 199 deletions
@@ -0,0 +1,20 @@
import 'package:json_annotation/json_annotation.dart';
import '../../utils/json_utils.dart';
import 'simkl_ids.dart';
part 'simkl_recommendation.g.dart';
@JsonSerializable(createToJson: false)
class SimklRecommendation {
final String? title;
@JsonKey(fromJson: flexibleInt)
final int? year;
final String? poster;
final String? type;
final SimklIds ids;
const SimklRecommendation({this.title, this.year, this.poster, this.type, required this.ids});
factory SimklRecommendation.fromJson(Map<String, dynamic> json) => _$SimklRecommendationFromJson(json);
}