wip: adds preference & preference_option tables

This commit is contained in:
2025-04-28 08:50:51 -05:00
parent 883442225f
commit 7045116b56
14 changed files with 483 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
<?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,
) {}
}