Overview for refunds

This commit is contained in:
2026-09-07 10:45:33 +02:00
parent b9795f08f0
commit d07980dd1f
7 changed files with 272 additions and 2 deletions
@@ -0,0 +1,13 @@
<?php
namespace App\Domains\ParticipantRefund\Actions\ResendRefundMail;
use App\Models\ParticipantRefund;
class ResendRefundMailRequest
{
public function __construct(
public readonly ParticipantRefund $refund,
) {
}
}