feat: episode status

This commit is contained in:
Simon Ding
2024-07-15 14:41:49 +08:00
parent 68897e85f9
commit 9a3a4addeb
15 changed files with 288 additions and 50 deletions

View File

@@ -102,6 +102,7 @@ class Episodes {
String? airDate;
int? seasonNumber;
String? overview;
String? status;
Episodes(
{this.id,
@@ -110,6 +111,7 @@ class Episodes {
this.title,
this.airDate,
this.seasonNumber,
this.status,
this.overview});
Episodes.fromJson(Map<String, dynamic> json) {
@@ -119,6 +121,7 @@ class Episodes {
title = json['title'];
airDate = json['air_date'];
seasonNumber = json['season_number'];
status = json['status'];
overview = json['overview'];
}
}