<?php
/*
* Eventfix - RegisterModel.php
* --------------------------------------------------------------------------
* Created by: mhs
* Created on: 11.1.2024
* --------------------------------------------------------------------------
* Copyright (c) 2024 | Michael Hack Software e.K. | www.mh-s.de
*/
namespace App\Form\Data\System;
class RegisterData {
public string $firstname = '';
public string $lastname = '';
public string $mail = '';
public string $captcha = '';
public string $v1 = '';
public string $v2 = '';
public bool $privacy = false;
// ---------------------------------------------------------------------------------------------
public function isValid() : bool {
// Datenschutzerklärung
if (!$this->privacy) return false;
// Captcha
if ($this->captcha != (($this->v1 / 2) + ($this->v2 - 5))) return false;
return true;
}
}