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