<?php
namespace App\Model;
use Symfony\Component\Validator\Constraints as Assert;
class GetAutoToggleRequestDTO
{
public function __construct(
#[Assert\NotBlank]
public string $user,
#[Assert\Choice(choices: [0, 1])]
public int $expectedStatus,
) {
}
} Back to Directory