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