17 lines
309 B
PHP
17 lines
309 B
PHP
<?php
|
|
|
|
namespace App\Domains\ParticipantInvoice\Actions\CreateParticipantInvoice;
|
|
|
|
class CreateParticipantInvoiceResponse
|
|
{
|
|
public bool $success = false;
|
|
|
|
public string $invoiceNumber = '';
|
|
|
|
public string $filename = '';
|
|
|
|
public string $pdfContent = '';
|
|
|
|
public ?string $message = null;
|
|
}
|