src/Czech/Model/RegisterModel.php line 5

Open in your IDE?
  1. <?php
  2. namespace Czech\Model;
  3. class RegisterModel
  4. {
  5.     public ?string $email;
  6.     public ?string $firstName;
  7.     public ?string $lastName;
  8.     public ?string $password;
  9.     public ?string $repeatPassword;
  10.     public ?string $companyName;
  11.     public ?string $businessID;
  12.     public ?string $taxID;
  13.     public ?string $vatPayerSelect;
  14.     public ?string $type;
  15.     public bool $agree false;
  16. }