From df4120b68d7924b66002fe5f5320a3a9ffd3437a Mon Sep 17 00:00:00 2001 From: tristan Date: Thu, 11 Jun 2026 11:46:33 +0200 Subject: [PATCH] feat(night-contingent) : DTO NightContingentRow --- src/Dto/WorkHours/NightContingentRow.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/Dto/WorkHours/NightContingentRow.php diff --git a/src/Dto/WorkHours/NightContingentRow.php b/src/Dto/WorkHours/NightContingentRow.php new file mode 100644 index 0000000..df4a25e --- /dev/null +++ b/src/Dto/WorkHours/NightContingentRow.php @@ -0,0 +1,17 @@ + $months clé 1..12 + */ + public function __construct( + public readonly int $employeeId, + public readonly string $employeeName, + public readonly array $months, + ) {} +}