17 lines
412 B
PHP
17 lines
412 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\ParticipantPayment;
|
|
|
|
use App\Models\EventParticipant;
|
|
use App\ValueObjects\Amount;
|
|
|
|
class ParticipantPaymentRequest {
|
|
public EventParticipant $participant;
|
|
public Amount $amountPaid;
|
|
|
|
public function __construct(EventParticipant $participant, Amount $amountPaid) {
|
|
$this->participant = $participant;
|
|
$this->amountPaid = $amountPaid;
|
|
}
|
|
}
|