0cf9602958
Events can be moved to archive and moved back Fixed validation
12 lines
194 B
PHP
12 lines
194 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\UnarchiveEvent;
|
|
|
|
class UnarchiveEventResponse {
|
|
public bool $success;
|
|
|
|
public function __construct() {
|
|
$this->success = false;
|
|
}
|
|
}
|