18 lines
490 B
PHP
18 lines
490 B
PHP
<?php
|
|
|
|
namespace App\Domains\ParticipantRefund\Actions\AcceptRefund;
|
|
|
|
use App\Models\ParticipantRefund;
|
|
|
|
class AcceptRefundRequest
|
|
{
|
|
public function __construct(
|
|
public readonly ?ParticipantRefund $refund,
|
|
public readonly string $accountOwner,
|
|
public readonly string $accountIban,
|
|
/** Ob der Teili die Erklärung auf der Seite angekreuzt hat. Ohne sie taugt der Beleg nichts. */
|
|
public readonly bool $declarationAccepted = false,
|
|
) {
|
|
}
|
|
}
|