Files
mareike/app/Domains/Event/Actions/SetParticipationOptions/SetParticipationOptionsResponse.php
T
2026-08-12 17:18:45 +02:00

16 lines
276 B
PHP

<?php
namespace App\Domains\Event\Actions\SetParticipationOptions;
class SetParticipationOptionsResponse
{
public bool $success;
public ?string $message;
public function __construct()
{
$this->success = false;
$this->message = null;
}
}