feat : add contract end notice DTO

This commit is contained in:
2026-06-24 15:24:22 +02:00
parent a479236489
commit 3b63817348
@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace App\Service\Notification;
final readonly class ContractEndNotice
{
public function __construct(
public ?int $employeeId,
public string $message,
) {}
}