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