Files
mareike/app/Domains/ParticipantRefund/Actions/AcceptRefund/AcceptRefundResponse.php
T

18 lines
356 B
PHP

<?php
namespace App\Domains\ParticipantRefund\Actions\AcceptRefund;
class AcceptRefundResponse
{
public bool $success = false;
public ?string $message = null;
/**
* Feldbezogene Fehler für das Formular. Schlüssel sind die Feldnamen des Frontends.
*
* @var array<string, string>
*/
public array $errorTypes = [];
}