14 lines
203 B
PHP
14 lines
203 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Domain\Manga\Application\Query;
|
|
|
|
readonly class FindMangaMatchByFilename
|
|
{
|
|
public function __construct(
|
|
public string $filename
|
|
) {
|
|
}
|
|
}
|