HummingBirdAnimeClient/src/AnimeClient/Types/Characters.php

23 lines
628 B
PHP
Raw Normal View History

2019-12-09 16:17:25 -05:00
<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu to manage anime and manga watch lists
*
2021-02-04 11:57:01 -05:00
* PHP version 8
2019-12-09 16:17:25 -05:00
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2021-01-13 01:52:03 -05:00
* @copyright 2015 - 2021 Timothy J. Warren
2019-12-09 16:17:25 -05:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
2019-12-09 16:17:25 -05:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Types;
final class Characters extends AbstractType {
2020-04-28 12:24:12 -04:00
public array $main = [];
2019-12-09 16:17:25 -05:00
2020-04-28 12:24:12 -04:00
public array $supporting = [];
2019-12-09 16:17:25 -05:00
}