mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 22:09:29 +00:00
Create new account model.
This commit is contained in:
parent
259b8be3b5
commit
dcdde1e84b
30
classes/models/NewAccount.php
Normal file
30
classes/models/NewAccount.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?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;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user