mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 22:09:29 +00:00
30 lines
351 B
PHP
30 lines
351 B
PHP
|
<?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;
|
||
|
|
||
|
}
|