14 lines
261 B
PHP
14 lines
261 B
PHP
<?php
|
|
|
|
namespace App\Domains\ParticipantInvoice\Actions\CreateParticipantInvoice;
|
|
|
|
use App\Models\EventParticipant;
|
|
|
|
class CreateParticipantInvoiceRequest
|
|
{
|
|
public function __construct(
|
|
public readonly EventParticipant $participant,
|
|
) {
|
|
}
|
|
}
|