15 lines
296 B
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,
|
|
) {}
|
|
}
|