14 lines
250 B
PHP
14 lines
250 B
PHP
<?php
|
|
|
|
namespace App\Domain\Manga\Application\Command;
|
|
|
|
use App\Domain\Shared\Domain\Contract\CommandInterface;
|
|
|
|
readonly class DeleteManga implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public string $mangaId
|
|
) {
|
|
}
|
|
}
|