16 lines
280 B
PHP
16 lines
280 B
PHP
<?php
|
|
|
|
namespace App\Domains\Invoice\Actions\CreateInvoice;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
class CreateInvoiceResponse {
|
|
public bool $success;
|
|
public ?Invoice $invoice;
|
|
|
|
public function __construct() {
|
|
$this->success = false;
|
|
$this->invoice = null;
|
|
}
|
|
}
|