Added:
- Messenger, Mercure - chapter download flow (lelscan only)
This commit is contained in:
18
src/Message/DownloadChapter.php
Normal file
18
src/Message/DownloadChapter.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Message;
|
||||
|
||||
class DownloadChapter
|
||||
{
|
||||
private int $chapterId;
|
||||
|
||||
public function __construct(int $chapterId)
|
||||
{
|
||||
$this->chapterId = $chapterId;
|
||||
}
|
||||
|
||||
public function getChapterId(): int
|
||||
{
|
||||
return $this->chapterId;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user