feat: 追番、番剧详情查看

This commit is contained in:
guozhigq
2023-08-06 13:51:21 +08:00
parent c83f70c08a
commit b136cd21a9
8 changed files with 386 additions and 209 deletions

View File

@ -38,6 +38,7 @@ class BangumiInfoModel {
this.total,
this.type,
this.userStatus,
this.staff,
});
Map? activity;
@ -78,6 +79,7 @@ class BangumiInfoModel {
int? total;
int? type;
Map? userStatus;
String? staff;
BangumiInfoModel.fromJson(Map<String, dynamic> json) {
activity = json['activity'];
@ -120,6 +122,7 @@ class BangumiInfoModel {
total = json['total'];
type = json['type'];
userStatus = json['user_status'];
staff = json['staff'];
}
}