Files
torsearch/src/Library/Action/Command/LibrarySearchCommand.php
2025-07-13 21:27:54 -05:00

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,
) {}
}