17 lines
291 B
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;
|
|
}
|
|
|
|
}
|