delete answer variants for logic rework

This commit is contained in:
Вячеслав 2025-05-13 19:09:08 +05:00
parent dc6bca6b6e
commit c39fd4192a
4 changed files with 13 additions and 7 deletions

View file

@ -9,13 +9,9 @@ public class CreateQuestionDto
/// Название вопроса
/// </summary>
public required string Title { get; set; }
/// <summary>
/// Тип вопроса
/// </summary>
public required string QuestionType { get; set; }
/// <summary>
/// Варианты ответа (только если вопрос с выбором)
/// </summary>
public List<string>? AnswerVariants { get; set; }
}