Files
th.guenther 0cf9602958 Direct payments for invoices
Events can be moved to archive and moved back
Fixed validation
2026-05-12 16:04:15 +02:00

14 lines
222 B
PHP

<?php
namespace App\Domains\Event\Actions\ArchiveEvent;
use App\Models\Event;
class ArchiveEventRequest {
public Event $event;
public function __construct(Event $event) {
$this->event = $event;
}
}