18 lines
397 B
PHP
18 lines
397 B
PHP
<?php
|
|
|
|
namespace App\Download\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
/**
|
|
* @implements CommandInterface<DownloadSeasonCommand>
|
|
*/
|
|
class DownloadSeasonCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public int $userId,
|
|
public int $season,
|
|
public string $imdbId,
|
|
public string $mediaType = 'tvshows',
|
|
) {}
|
|
} |