19 lines
415 B
PHP
19 lines
415 B
PHP
<?php
|
|
|
|
namespace App\Monitor\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
class AddMonitorCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public string $userId,
|
|
public string $title,
|
|
public string $imdbId,
|
|
public string $tmdbId,
|
|
public string $monitorType,
|
|
public ?int $season,
|
|
public ?int $episode,
|
|
) {}
|
|
}
|