Files
torsearch/src/Torrentio/Action/Command/GetTvShowOptionsCommand.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,
) {}
}