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