Files
Mangarr/src/Domain/Scraping/Application/Command/ScrapeChapter.php
ext.jeremy.guillot@maxicoffee.domains 0c8ca6cca9 feat: debut rerefonte DDD CQRS
2025-02-01 15:28:58 +01:00

12 lines
230 B
PHP

<?php
namespace App\Domain\Scraping\Application\Command\ScrapeChapter;
class ScrapeChapterCommand
{
public function __construct(
public readonly string $chapterId,
public readonly string $sourceId
) {}
}