17 lines
339 B
PHP
17 lines
339 B
PHP
<?php
|
|
|
|
namespace App\Library\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
/**
|
|
* @implements CommandInterface<DeleteMediaFileCommand>
|
|
*/
|
|
class DeleteMediaFileCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public string $filename,
|
|
public ?int $downloadId = null,
|
|
) {}
|
|
}
|