package com.infinite.focus.server.tests;

import java.util.ArrayList;
import java.util.Date;
import java.util.List;

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

import org.hibernate.annotations.CreationTimestamp;
import org.hibernate.annotations.GenericGenerator;


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

public class TestDataWrapper {
	
	private Long lesson_id;
 	private Test test;
 	public List<QuestionDataWrapper> questions = new ArrayList<>();
 	
	public TestDataWrapper() {
		super();
	}

	public Test getTest() {
		return test;
	}

	public void setTest(Test test) {
		this.test = test;
	}

	public List<QuestionDataWrapper> getQuestions() {
		return questions;
	}

	public void setQuestions(List<QuestionDataWrapper> questions) {
		this.questions = questions;
	}

	public Long getLesson_id() {
		return lesson_id;
	}

	public void setLesson_id(Long lesson_id) {
		this.lesson_id = lesson_id;
	}
	
	


}