Files
torsearch/src/Download/Action/Result/DeleteMediaFileResult.php

15 lines
296 B
PHP

<?php
namespace App\Download\Action\Result;
use OneToMany\RichBundle\Contract\ResultInterface;
class DeleteMediaFileResult implements ResultInterface
{
public function __construct(
public string $message,
public string $filepath,
public bool $isDeleted,
) {}
}