13 lines
234 B
PHP
13 lines
234 B
PHP
<?php
|
|
|
|
namespace App\Domain\Manga\Application\Command;
|
|
|
|
readonly class ImportChapter
|
|
{
|
|
public function __construct(
|
|
public string $mangaId,
|
|
public float $chapterNumber,
|
|
public string $fileBinary
|
|
) {}
|
|
}
|