Files
Mangarr/src/Domain/Manga/Application/Command/DeleteChapter.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
) {}
}