19 lines
466 B
PHP
19 lines
466 B
PHP
<?php
|
|
|
|
namespace App\Torrentio\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
class DeleteCacheCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public ?string $type = null,
|
|
public ?string $mediaType = null,
|
|
public ?string $tmdbId = null,
|
|
public ?string $imdbId = null,
|
|
public ?int $season = null,
|
|
public ?int $episode = null,
|
|
public ?array $tags = null,
|
|
) {}
|
|
}
|