package com.bizofficer.apiweb.selftestopt;

import java.util.List;

public class SelfTestOptionsResponseBean {

	private Integer duration, totalQuestions;
	private Double marksCorrectAns, marksIncorrectAns, marksNotAnswer;
	private List<QuestionTypeBean> questionTypeList;
	
	
	public Integer getDuration() {
		return duration;
	}
	public void setDuration(Integer duration) {
		this.duration = duration;
	}
	public Integer getTotalQuestions() {
		return totalQuestions;
	}
	public void setTotalQuestions(Integer totalQuestions) {
		this.totalQuestions = totalQuestions;
	}
	public Double getMarksCorrectAns() {
		return marksCorrectAns;
	}
	public void setMarksCorrectAns(Double marksCorrectAns) {
		this.marksCorrectAns = marksCorrectAns;
	}
	public Double getMarksIncorrectAns() {
		return marksIncorrectAns;
	}
	public void setMarksIncorrectAns(Double marksIncorrectAns) {
		this.marksIncorrectAns = marksIncorrectAns;
	}
	public Double getMarksNotAnswer() {
		return marksNotAnswer;
	}
	public void setMarksNotAnswer(Double marksNotAnswer) {
		this.marksNotAnswer = marksNotAnswer;
	}
	public List<QuestionTypeBean> getQuestionTypeList() {
		return questionTypeList;
	}
	public void setQuestionTypeList(List<QuestionTypeBean> questionTypeList) {
		this.questionTypeList = questionTypeList;
	}
	
	
	
	
	

	
	
	
}
