13 lines
249 B
PHP
13 lines
249 B
PHP
<?php
|
|
|
|
namespace App\Domain\Manga\Application\Command;
|
|
|
|
use App\Domain\Shared\Domain\Contract\CommandInterface;
|
|
|
|
readonly class DeleteChapter implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public string $chapterId
|
|
) {}
|
|
}
|