wip: adds cache rich functionality
This commit is contained in:
18
src/Torrentio/Action/Command/DeleteCacheCommand.php
Normal file
18
src/Torrentio/Action/Command/DeleteCacheCommand.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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,
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user