14 lines
295 B
PHP
14 lines
295 B
PHP
<?php
|
|
|
|
namespace App\Application\Reports\DTO;
|
|
|
|
final readonly class GenerateReportResult
|
|
{
|
|
public function __construct(
|
|
public int $reportId,
|
|
public string $path,
|
|
public bool $usedNewArchitecture,
|
|
public ?ReportComparisonResult $comparison = null,
|
|
) {}
|
|
}
|