Files
mareike/app/Domains/ParticipantRefund/Actions/ReleaseRefund/ReleaseRefundRequest.php
T

18 lines
399 B
PHP

<?php
namespace App\Domains\ParticipantRefund\Actions\ReleaseRefund;
use App\Models\EventParticipant;
use App\ValueObjects\Amount;
class ReleaseRefundRequest
{
public function __construct(
public readonly EventParticipant $participant,
public readonly Amount $amount,
public readonly string $reason,
public readonly ?string $reasonNote = null,
) {
}
}