package com.smartor.domain; import lombok.Data; import java.util.List; @Data public class Question { private String type; private String name; private String title; private List options; public Question(String type, String name, String title, List options) { this.type = type; this.name = name; this.title = title; this.options = options; } }