feat: fav pgc page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-03-29 13:28:07 +08:00
parent 6ea8ffea7a
commit 72fa9c51f0
16 changed files with 884 additions and 216 deletions

View File

@@ -44,6 +44,7 @@ class BangumiListItemModel {
this.title,
this.titleIcon,
this.progress,
this.newEp,
});
String? badge;
@@ -62,9 +63,11 @@ class BangumiListItemModel {
String? subTitle;
String? title;
String? titleIcon;
Map? newEp;
String? progress;
bool? checked;
BangumiListItemModel.fromJson(Map<String, dynamic> json) {
badge = json['badge'] == '' ? null : json['badge'];
badgeType = json['badge_type'];
@@ -82,7 +85,7 @@ class BangumiListItemModel {
subTitle = json['sub_title'];
title = json['title'];
titleIcon = json['title_icon'];
newEp = json['new_ep'];
progress = json['progress'];
}
}