Files
mareike/app/Domains/Event/Actions/SignUp/SignUpResponse.php
T
2026-03-21 21:02:15 +01:00

17 lines
291 B
PHP

<?php
namespace App\Domains\Event\Actions\SignUp;
use App\Models\EventParticipant;
class SignUpResponse {
public bool $success;
public ?EventParticipant $participant;
public function __construct() {
$this->success = false;
$this->participant = null;
}
}