Files
mareike/app/Domains/Event/Actions/CreateEvent/CreateEventResponse.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;
}
}