13 lines
189 B
PHP
13 lines
189 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\UpdateEvent;
|
|
|
|
class UpdateEventResponse {
|
|
public bool $success;
|
|
|
|
public function __construct() {
|
|
$this->success = false;
|
|
}
|
|
|
|
}
|