ComunicAPI/classes/models/NewAccount.php

30 lines
351 B
PHP
Raw Normal View History

2018-04-11 09:19:48 +00:00
<?php
/**
* New account model
*
* @author Pierre HUBERT
*/
class NewAccount {
/**
* The first name of the user
*/
public $firstName;
/**
* The last name of the user
*/
public $lastName;
/**
* The email address of the user
*/
public $emailAddress;
/**
* The password of the user (NOT ENCRYPTED)
*/
public $password;
}