Files
torsearch/src/Download/Action/Command/DownloadMediaCommand.php
Brock H Caldwell f4644d40ef
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 13s
feat: notifies user of bad RD download (failed for copyright, etc.)
2026-02-06 09:55:19 -06:00

22 lines
536 B
PHP

<?php
namespace App\Download\Action\Command;
use OneToMany\RichBundle\Contract\CommandInterface;
/**
* @implements CommandInterface<DownloadMediaCommand>
*/
class DownloadMediaCommand implements CommandInterface
{
public function __construct(
public string $url,
public string $title,
public string $filename,
public string $mediaType,
public string $imdbId,
public int $userId,
public ?int $downloadId = null,
public ?string $mercureAlertTopic = null,
) {}
}