going to question management

This commit is contained in:
Вячеслав 2025-04-20 19:31:38 +05:00
parent 00e93fde2e
commit 585d6ac6e3
7 changed files with 150 additions and 0 deletions

View file

@ -0,0 +1,10 @@
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; }
}