feat : DTOs et mapper pour IpBGetSortiesPresumees

This commit is contained in:
2026-04-21 08:59:33 +02:00
parent d2839f91b5
commit 6493c8a1a7
4 changed files with 153 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace Malio\EdnotifBundle\Bovin\Dto;
use DateTimeImmutable;
final readonly class PresumedExitDto
{
public function __construct(
public ?BovinRef $bovin,
public ?DateTimeImmutable $exitDate,
) {}
}