wip: adds cache rich functionality

This commit is contained in:
2025-06-28 15:15:49 -05:00
parent a2b20b14ea
commit 242dd6fe99
11 changed files with 223 additions and 9 deletions

View 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,
) {}
}