21 lines
448 B
PHP
21 lines
448 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Domain\Manga\Application\Response;
|
|
|
|
readonly class MangaMatchItem
|
|
{
|
|
public function __construct(
|
|
public string $id,
|
|
public string $title,
|
|
public string $slug,
|
|
public array $alternativeSlugs,
|
|
public ?string $thumbnailUrl,
|
|
public int $matchScore,
|
|
public ?float $chapterNumber = null,
|
|
public ?float $volumeNumber = null
|
|
) {
|
|
}
|
|
}
|