12 lines
230 B
PHP
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
|
|
) {}
|
|
}
|