Files

12 lines
218 B
PHP

<?php
namespace App\Domains\Rechnung\Actions\GeneratePdf;
class GeneratePdfResponse
{
public function __construct(
public readonly string $pdfContent,
public readonly string $filename,
) {}
}