17 lines
393 B
PHP
17 lines
393 B
PHP
<?php
|
|
|
|
namespace App\Library\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
class LibrarySearchCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public ?string $term = null,
|
|
public ?string $title = null,
|
|
public ?string $imdbId = null,
|
|
public ?string $season = null,
|
|
public ?string $episode = null,
|
|
) {}
|
|
}
|