Files
iTop/sources/FormImplementation/Dto/ObjectSearchDto.php
Benjamin Dalsass 2bcc4d9989 N°7063 - Forms SDK - Add Symfony forms component
error forms issue
2023-12-28 13:37:23 +01:00

19 lines
354 B
PHP

<?php
namespace Combodo\iTop\FormImplementation\Dto;
use Symfony\Component\Validator\Constraints as Assert;
class ObjectSearchDto
{
public function __construct(
#[Assert\NotBlank]
public readonly string $class,
#[Assert\NotBlank]
public readonly string $oql,
public readonly string $fields,
public readonly string $search = '',
) {
}
}