package com.infinite.focus.server.auth;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;


/**
 * 
 * @author Saboor
 * 
 *
 */


//Object sent when user signs up > used to hold data from multiple classes

public class SchoolSignUpRequest {
	
    private School school;
    
	private String username;
	private String password;
	
	
	public SchoolSignUpRequest() {
		super();
	}


	

	public School getSchool() {
		return school;
	}




	public void setSchool(School school) {
		this.school = school;
	}




	public String getUsername() {
		return username;
	}


	public void setUsername(String username) {
		this.username = username;
	}


	public String getPassword() {
		return password;
	}


	public void setPassword(String password) {
		this.password = password;
	}
	
	


}
