20 lines
428 B
PHP
20 lines
428 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\SetParticipationOptions;
|
|
|
|
use App\Models\Event;
|
|
|
|
class SetParticipationOptionsRequest
|
|
{
|
|
public Event $event;
|
|
|
|
/** @var array<int, array<string, mixed>> Rohe Fragen-Definition aus dem Admin-Panel. */
|
|
public array $questions;
|
|
|
|
public function __construct(Event $event, array $questions)
|
|
{
|
|
$this->event = $event;
|
|
$this->questions = $questions;
|
|
}
|
|
}
|