This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccount/app/Data/Entitiy/User.php
2019-12-02 14:26:32 +01:00

22 lines
378 B
PHP

<?php
namespace App\Data\Entity;
class User extends Base
{
public $id;
public $created_at;
public $updated_at;
public $username;
public $password;
public $developer;
public $admin;
public $status;
public $inviteCode;
public $password_recovery_code;
public $mail;
public function getMail() {
return $this->mail;
}
}