Files
mareike/app/Domains/Event/Actions/GenerateIcal/GenerateIcalRequest.php
2026-04-25 16:50:32 +02:00

13 lines
204 B
PHP

<?php
namespace App\Domains\Event\Actions\GenerateIcal;
use App\Models\EventParticipant;
class GenerateIcalRequest
{
public function __construct(public EventParticipant $participant)
{
}
}