Files
mareike/app/Domains/Event/Actions/SignUp/SignUpResponse.php

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;
}
}