package com.bizofficer.teacher.testdashboard;

public class MeritStudentsBean {

	private String scoreRange;
	private Integer minScore, maxScore, totalStudents;
	
	
	public String getScoreRange() {
		return scoreRange;
	}
	public void setScoreRange(String scoreRange) {
		this.scoreRange = scoreRange;
	}
	public Integer getMinScore() {
		return minScore;
	}
	public void setMinScore(Integer minScore) {
		this.minScore = minScore;
	}
	public Integer getMaxScore() {
		return maxScore;
	}
	public void setMaxScore(Integer maxScore) {
		this.maxScore = maxScore;
	}
	public Integer getTotalStudents() {
		return totalStudents;
	}
	public void setTotalStudents(Integer totalStudents) {
		this.totalStudents = totalStudents;
	}
	
	
	
	
	
	
	
	
	
	

	
	
	
}
