namespace SurveyBackend.DTOs.Question;
///
/// Схема для создания нового Question
///
public class QuestionCreateDto
{
///
/// Название вопроса
///
public required string Title { get; set; }
///
/// Тип вопроса
///
public required string QuestionType { get; set; }
}