8 lines
165 B
PHP
8 lines
165 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\SetParticipationState;
|
|
|
|
class SetParticipationStateResponse {
|
|
function __construct(public bool $success = false) {}
|
|
}
|