mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-10-31 10:14:51 +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;
 | |
| 
 | |
| } | 
