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

18 lines
327 B
PHP

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