feat: button to add movie monitor
This commit is contained in:
16
src/Download/Action/Command/AddMovieMonitorCommand.php
Normal file
16
src/Download/Action/Command/AddMovieMonitorCommand.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Download\Action\Command;
|
||||
|
||||
use App\Download\Framework\Entity\MovieMonitor;
|
||||
use OneToMany\RichBundle\Contract\CommandInterface;
|
||||
|
||||
class AddMovieMonitorCommand implements CommandInterface
|
||||
{
|
||||
public function __construct(
|
||||
public string $userEmail,
|
||||
public string $title,
|
||||
public string $imdbId,
|
||||
public string $tmdbId,
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user