feat(heures) : export Contingent heures de nuit (liste employés) #28

Merged
tristan merged 17 commits from feat/night-hours-contingent-export into develop 2026-06-11 13:02:31 +00:00
Showing only changes of commit df4120b68d - Show all commits
+17
View File
@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace App\Dto\WorkHours;
final class NightContingentRow
{
/**
* @param array<int, array{nightMinutes: int, nightDays: int}> $months clé 1..12
*/
public function __construct(
public readonly int $employeeId,
public readonly string $employeeName,
public readonly array $months,
) {}
}