feat: commit before changing gitea
This commit is contained in:
parent
b05bd98f63
commit
ffceda606f
12
src/Domain/Manga/Application/Command/ImportChapter.php
Normal file
12
src/Domain/Manga/Application/Command/ImportChapter.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\Manga\Application\Command;
|
||||
|
||||
readonly class ImportChapter
|
||||
{
|
||||
public function __construct(
|
||||
public string $mangaId,
|
||||
public float $chapterNumber,
|
||||
public string $fileBinary
|
||||
) {}
|
||||
}
|
||||
16
src/Domain/Manga/Application/Command/ImportVolume.php
Normal file
16
src/Domain/Manga/Application/Command/ImportVolume.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\Manga\Application\Command;
|
||||
|
||||
readonly class ImportVolume
|
||||
{
|
||||
public function __construct(
|
||||
public string $mangaId,
|
||||
public int $volumeNumber,
|
||||
public string $fileBinary
|
||||
) {}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user