feat: delete downloads from DB

This commit is contained in:
2025-05-31 22:21:11 -05:00
parent 325e4e14a7
commit c0f67a32ff
8 changed files with 126 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Download\Action\Result;
use App\Download\Framework\Entity\Download;
use OneToMany\RichBundle\Contract\ResultInterface;
/** @implements ResultInterface<DownloadMediaResult> */
class DeleteDownloadResult implements ResultInterface
{
public function __construct(
public int $status,
public string $message,
public Download $download,
) {}
}