You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spring-boot-online-exam/backend/src/main/java/lsgwr/exam/vo/QuestionSelectionVo.java

42 lines
1.0 KiB

4 months ago
/**
*
*
*/
5 months ago
package lsgwr.exam.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
import lsgwr.exam.entity.QuestionCategory;
import lsgwr.exam.entity.QuestionLevel;
import lsgwr.exam.entity.QuestionType;
import lombok.Data;
import java.util.List;
4 months ago
/**
*
*
*/
5 months ago
@Data
public class QuestionSelectionVo {
4 months ago
/**
*
*
*/
5 months ago
@JsonProperty("types")
private List<QuestionType> questionTypeList;
4 months ago
/**
*
*
*/
5 months ago
@JsonProperty("categories")
private List<QuestionCategory> questionCategoryList;
4 months ago
/**
*
*
*/
5 months ago
@JsonProperty("levels")
private List<QuestionLevel> questionLevelList;
}