survey-webapp/SurveyBackend/SurveyBackend.API/DTOs/Question/CreateQuestionDTO.cs

10 lines
No EOL
277 B
C#

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<string>? AnswerVariants { get; set; }
}