21 lines
511 B
PHP
21 lines
511 B
PHP
<?php
|
|
|
|
namespace App\Library\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
/**
|
|
* @implements CommandInterface<GetMediaFromLibraryCommand>
|
|
*/
|
|
class GetMediaFromLibraryCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public ?int $userId = null,
|
|
public ?string $mediaType = null,
|
|
public ?string $imdbId = null,
|
|
public ?string $title = null,
|
|
public ?string $season = null,
|
|
public ?string $episode = null,
|
|
) {}
|
|
}
|