<?php
namespace App\Model;
use Symfony\Component\Validator\Constraints as Assert;
class GetRenewRequestDTO
{
public function __construct(
#[Assert\NotBlank]
public int $certificateId,
#[Assert\NotBlank]
public string $domain,
#[Assert\NotBlank]
public string $certificateType,
#[Assert\NotBlank]
public string $NCUser,
) {
}
}
Back to Directory