13 lines
321 B
PHP
13 lines
321 B
PHP
<?php
|
|
|
|
namespace App\User\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
/** @implements CommandInterface<SaveUserMediaPreferencesCommand> */
|
|
class SaveUserCalendarPreferencesCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public string $enable_ical_up_ep,
|
|
) {}
|
|
} |