mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
21 lines
365 B
PHP
21 lines
365 B
PHP
<?php
|
|
|
|
namespace App\Dto\Connector;
|
|
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
|
class DefaultProviderDto
|
|
{
|
|
#[Assert\NotBlank]
|
|
#[Assert\IsTrue]
|
|
public bool $ownerLegalAge;
|
|
|
|
#[Assert\NotBlank]
|
|
#[Assert\IsTrue]
|
|
public bool $acceptConditions;
|
|
|
|
#[Assert\NotBlank]
|
|
#[Assert\IsTrue]
|
|
public bool $waiveRetractationPeriod;
|
|
}
|