16 lines
276 B
PHP
16 lines
276 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\SetParticipationOptions;
|
|
|
|
class SetParticipationOptionsResponse
|
|
{
|
|
public bool $success;
|
|
public ?string $message;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->success = false;
|
|
$this->message = null;
|
|
}
|
|
}
|