public String group;
public List<BookingAnswerDto> answers = new ArrayList<>();
private List<QuestionAnswerPairDto> questionsAndAnswers = new ArrayList<>();
public void addPair(QuestionDto q, BookingAnswerWithIdDto a) {
questionsAndAnswers.add(new QuestionAnswerPairDto(q, a));
}