namespace SurveyBackend.DTOs.Question;
///
/// Выходнпя схема вопроса
///
public class OutputQuestionDto
{
///
/// ID вопроса
///
public required int Id { get; set; }
///
/// ID родительского опроса
///
public required int SurveyId { get; set; }
///
/// Заголовок вопроса
///
public required string Title { get; set; }
///
/// Тип вопроса
///
public required string QuestionType { get; set; }
///
/// Варианты ответа
///
public List? AnswerVariants { get; set; }
}