14 lines
239 B
PHP
14 lines
239 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Malio\EdnotifBundle\Bovin\Dto;
|
|
|
|
final readonly class ExploitationRef
|
|
{
|
|
public function __construct(
|
|
public ?string $countryCode,
|
|
public ?string $exploitationNumber,
|
|
) {}
|
|
}
|