16 lines
260 B
PHP
16 lines
260 B
PHP
<?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,
|
|
) {}
|
|
}
|