16 lines
332 B
PHP
16 lines
332 B
PHP
<?php
|
|
|
|
namespace App\Torrentio\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
class GetTvShowOptionsCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public string $tmdbId,
|
|
public string $imdbId,
|
|
public ?string $season,
|
|
public ?string $episode,
|
|
) {}
|
|
}
|