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