src/Dto/ProfileFilterFormDataFilters.php line 5

Open in your IDE?
  1. <?php
  2. namespace App\Dto;
  3. class ProfileFilterFormDataFilters
  4. {
  5.     public function __construct(
  6.         public bool $approved = false,
  7.         public bool $withComments = false,
  8.         public bool $withVideo = false,
  9.         public bool $withSelfie = false,
  10.         public ?array $oneHourPrice = null,
  11.         public ?array $stations = null,
  12.         public bool $hasApartment = false,
  13.         public bool $hasTakeOut = false,
  14.         public ?array $age = null,
  15.         public ?array $breastSize = null,
  16.         public ?array $height = null,
  17.         public ?bool $hasTattoo = false,
  18.         public ?bool $hasPiercing = false,
  19.         public ?array $hairColor = null,
  20.         public ?array $nationality = null,
  21.         public ?array $bodyType = null,
  22.         public ?array $services = null
  23.     ) {}
  24. }