diff options
| author | horus | 2020-02-23 23:11:03 +0100 |
|---|---|---|
| committer | horus | 2020-02-23 23:11:03 +0100 |
| commit | 2cd1589d6ae7095770e8c5dda10b138861d70501 (patch) | |
| tree | 7afe6ce2f5f435e375a56c0dd627bd1716a1dbe9 /app/Anime.php | |
| download | senpai-2cd1589d6ae7095770e8c5dda10b138861d70501.tar.gz | |
Initial commit. Calendar is working.
Diffstat (limited to 'app/Anime.php')
| -rw-r--r-- | app/Anime.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app/Anime.php b/app/Anime.php new file mode 100644 index 0000000..b13f785 --- /dev/null +++ b/app/Anime.php @@ -0,0 +1,30 @@ +<?php + +namespace App; + +class Anime { + + public $id; + + public $title_eng; + public $title_rom; + public $title_nat; + public $title_pref; + + public $airing_at; + public $time_until_airing; + public $episode; + public $duration; + + public $episodes_complete; + public $episodes_watched; + public $score_user; + public $score; + + public $rank; + public $popularity; + + public function __construct( $id ) { + $this->id = $id; + } +} |
