package com.bizofficer.apiweb.analytics;

public class TopperCompareBean {
	private String title;	
	private Integer correctQuestions, incorrectQuestions, unattemptedQuestions;
	private String timeSpent;
	private Double score;
	private Long scorePercentage;
	
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}	
	public Integer getCorrectQuestions() {
		return correctQuestions;
	}
	public void setCorrectQuestions(Integer correctQuestions) {
		this.correctQuestions = correctQuestions;
	}
	public Integer getIncorrectQuestions() {
		return incorrectQuestions;
	}
	public void setIncorrectQuestions(Integer incorrectQuestions) {
		this.incorrectQuestions = incorrectQuestions;
	}
	public Integer getUnattemptedQuestions() {
		return unattemptedQuestions;
	}
	public void setUnattemptedQuestions(Integer unattemptedQuestions) {
		this.unattemptedQuestions = unattemptedQuestions;
	}	
	public Double getScore() {
		return score;
	}
	public void setScore(Double score) {
		this.score = score;
	}
	public String getTimeSpent() {
		return timeSpent;
	}
	public void setTimeSpent(String timeSpent) {
		this.timeSpent = timeSpent;
	}
	public Long getScorePercentage() {
		return scorePercentage;
	}
	public void setScorePercentage(Long scorePercentage) {
		this.scorePercentage = scorePercentage;
	}
	
	
	
	
	



}








