Files
Mangarr/src/Domain/Manga/Application/Command/ImportChapter.php
ext.jeremy.guillot@maxicoffee.domains ffceda606f feat: commit before changing gitea
2026-02-08 17:58:01 +01:00

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
) {}
}