16 lines
266 B
PHP
16 lines
266 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\CreateEvent;
|
|
|
|
use App\Models\Event;
|
|
|
|
class CreateEventResponse {
|
|
public bool $success;
|
|
public ?Event $event;
|
|
|
|
public function __construct() {
|
|
$this->success = false;
|
|
$this->event = null;
|
|
}
|
|
}
|