package com.bizofficer.school.students;

import java.util.List;

public class SchoolStudentsResponseBean {

	private String responseTxt;
	private List<SchoolStudentsBean> students;
	private List<?> classes;
	
	
	public String getResponseTxt() {
		return responseTxt;
	}
	public void setResponseTxt(String responseTxt) {
		this.responseTxt = responseTxt;
	}
	public List<SchoolStudentsBean> getStudents() {
		return students;
	}
	public void setStudents(List<SchoolStudentsBean> students) {
		this.students = students;
	}
	public List<?> getClasses() {
		return classes;
	}
	public void setClasses(List<?> classes) {
		this.classes = classes;
	}
	
	
	
	
	
	
	
	
	
	
	
	

	

	
	
	
}
