16 lines
407 B
PHP
16 lines
407 B
PHP
<?php
|
|
|
|
namespace App\User\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
/** @implements CommandInterface<SaveUserMediaPreferencesCommand> */
|
|
class SaveUserMediaPreferencesCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public string $resolution,
|
|
public string $codec,
|
|
public string $language,
|
|
public string $provider,
|
|
) {}
|
|
} |