feat : restructuration des dossiers pour implementer plus facilement la suite des WS
This commit is contained in:
20
src/Bovin/Dto/BovinIdentificationDto.php
Normal file
20
src/Bovin/Dto/BovinIdentificationDto.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Malio\EdnotifBundle\Bovin\Dto;
|
||||
|
||||
final readonly class BovinIdentificationDto
|
||||
{
|
||||
public function __construct(
|
||||
public ?BovinRef $bovin,
|
||||
public ?string $sex,
|
||||
public ?string $breedType,
|
||||
public ?DateValueDto $birthDate,
|
||||
public ?string $workNumber,
|
||||
public ?bool $isFilie,
|
||||
public ?ParentInfoDto $motherCarrier,
|
||||
public ?ParentInfoDto $fatherIpg,
|
||||
public ?ExploitationRef $birthExploitation,
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user