15 lines
256 B
PHP
15 lines
256 B
PHP
<?php
|
|
|
|
namespace App\Domains\ParticipantRefund\Actions\ReleaseRefund;
|
|
|
|
use App\Models\ParticipantRefund;
|
|
|
|
class ReleaseRefundResponse
|
|
{
|
|
public bool $success = false;
|
|
|
|
public ?ParticipantRefund $refund = null;
|
|
|
|
public ?string $message = null;
|
|
}
|