20 lines
576 B
PHP
20 lines
576 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\BookBankStatementPayments;
|
|
|
|
use App\Models\Event;
|
|
|
|
class BookBankStatementPaymentsRequest
|
|
{
|
|
/**
|
|
* @param array<int, array<string, mixed>> $bookings Je Eintrag die bestätigte Zeile der Prüfansicht:
|
|
* participantIdentifier, paymentDate, amount,
|
|
* payerName, payerIban, purpose.
|
|
*/
|
|
public function __construct(
|
|
public readonly Event $event,
|
|
public readonly array $bookings,
|
|
) {
|
|
}
|
|
}
|