namespace SurveyBackend.DTOs.Question; public class CreateQuestionDTO { public required string Title { get; set; } public required int SurveyId { get; set; } public required string QuestionType { get; set; } public List? AnswerVariants { get; set; } }