10 lines
No EOL
277 B
C#
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; }
|
|
} |