Files
mareike/app/Domains/Event/Actions/UpdateEvent/UpdateEventResponse.php
T

15 lines
246 B
PHP

<?php
namespace App\Domains\Event\Actions\UpdateEvent;
class UpdateEventResponse {
public bool $success;
public string $message;
public function __construct() {
$this->success = false;
$this->message = '';
}
}