<?php
namespace App\Dto;
class ProfileFilterFormDataFilters
{
public function __construct(
public bool $approved = false,
public bool $withComments = false,
public bool $withVideo = false,
public bool $withSelfie = false,
public ?array $oneHourPrice = null,
public ?array $stations = null,
public bool $hasApartment = false,
public bool $hasTakeOut = false,
public ?array $age = null,
public ?array $breastSize = null,
public ?array $height = null,
public ?bool $hasTattoo = false,
public ?bool $hasPiercing = false,
public ?array $hairColor = null,
public ?array $nationality = null,
public ?array $bodyType = null,
public ?array $services = null
) {}
}