23 lines
516 B
PHP
23 lines
516 B
PHP
<?php
|
|
|
|
namespace App\Application\Reports\DTO;
|
|
|
|
final readonly class ReportComparisonResult
|
|
{
|
|
/**
|
|
* @param array<string, mixed> $diff
|
|
*/
|
|
public function __construct(
|
|
public string $reportType,
|
|
public string $path,
|
|
public string $status,
|
|
public array $diff,
|
|
public int $departmentId,
|
|
public int $userId,
|
|
public string $periodStart,
|
|
public string $periodEnd,
|
|
public ?int $reportId,
|
|
public float $durationMs,
|
|
) {}
|
|
}
|