Skip to content

Commit

Permalink
Anime Model Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
kaungsatthe1n committed Jan 7, 2022
1 parent ab589ca commit 4a9511e
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions lib/models/anime.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,27 @@ class AnimeResults {
}

class Anime {
String? id;
String? id;
String? name;
String? imageUrl;
String? episodeUrl;
String? summary;
String? status;
String? animeUrl;
List<String>? genres;
List<String>? epLinks;
String? currentEp;
String? releasedDate;

Anime({
this.id,
this.name,
this.imageUrl,
this.status,
this.summary,
this.genres,
this.epLinks,
this.currentEp,
this.episodeUrl,
this.animeUrl,
this.releasedDate,
});
}

0 comments on commit 4a9511e

Please sign in to comment.