Files
ednotif-bundle/src/Bovin/Dto/AnimalFileDto.php
tristan 7e0c084ebe
All checks were successful
Auto Tag Develop / tag (push) Successful in 5s
Build Release Artefact / build (push) Successful in 36s
feat : restructuration des dossiers pour implementer plus facilement la suite des WS
2026-01-23 16:19:50 +01:00

21 lines
503 B
PHP

<?php
declare(strict_types=1);
namespace Malio\EdnotifBundle\Bovin\Dto;
use Malio\EdnotifBundle\Shared\Dto\StandardResponseDto;
final readonly class AnimalFileDto
{
/**
* @param list<PresencePeriodDto> $presencePeriods
*/
public function __construct(
public StandardResponseDto $standardResponse,
public ?BovinIdentificationDto $identification,
public array $presencePeriods,
public ?object $rawSoapResponse, // pour garder 100% des data
) {}
}