20 lines
443 B
PHP
20 lines
443 B
PHP
<?php
|
|
|
|
namespace App\Domains\Invoice\Actions\CreateInvoice;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
class CreateInvoiceResponse {
|
|
public bool $success;
|
|
public ?Invoice $invoice;
|
|
|
|
/** Warum keine Abrechnung entstanden ist -- für die Rückmeldung an die einreichende Person. */
|
|
public ?string $message;
|
|
|
|
public function __construct() {
|
|
$this->success = false;
|
|
$this->invoice = null;
|
|
$this->message = null;
|
|
}
|
|
}
|