12 lines
194 B
PHP
12 lines
194 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\UpdateManagers;
|
|
|
|
class UpdateManagersResponse {
|
|
public bool $success;
|
|
|
|
public function __construct() {
|
|
$this->success = false;
|
|
}
|
|
}
|