11 lines
229 B
PHP
11 lines
229 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\SendMissingPaymentMails;
|
|
|
|
class SendMissingPaymentMailsResponse {
|
|
function __construct(
|
|
public bool $success = false,
|
|
public int $remindedParticipants = 0
|
|
) {}
|
|
}
|