12 lines
159 B
PHP
12 lines
159 B
PHP
<?php
|
|
|
|
namespace App\Domain\Manga\Application\Query;
|
|
|
|
readonly class GetMangaById
|
|
{
|
|
public function __construct(
|
|
public string $id
|
|
) {
|
|
}
|
|
}
|