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