18 lines
366 B
PHP
18 lines
366 B
PHP
<?php
|
|
|
|
namespace App\Domain\Manga\Application\Response;
|
|
|
|
readonly class ChapterResponse
|
|
{
|
|
public function __construct(
|
|
public string $id,
|
|
public float $number,
|
|
public ?string $title,
|
|
public ?int $volume,
|
|
public bool $isVisible,
|
|
public ?string $cbzPath,
|
|
public \DateTimeImmutable $createdAt
|
|
) {
|
|
}
|
|
}
|