Files
mareike/app/Domains/Event/Actions/SetEventAddons/SetEventAddonsResponse.php
T
2026-08-12 16:45:02 +02:00

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;
}
}