12 lines
209 B
PHP
12 lines
209 B
PHP
<?php
|
|
|
|
namespace App\Domains\Invoice\Actions\CreateInvoiceReceipt;
|
|
|
|
class CreateInvoiceReceiptResponse {
|
|
public string $fileName;
|
|
|
|
public function __construct() {
|
|
$this->fileName = '';
|
|
}
|
|
}
|