mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-11-04 04:04:20 +00:00 
			
		
		
		
	Create new account model.
This commit is contained in:
		
							
								
								
									
										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;
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user