10 lines
No EOL
333 B
C#
10 lines
No EOL
333 B
C#
namespace SurveyBackend.DTOs.Question;
|
|
|
|
public class OutputQuestionDto
|
|
{
|
|
public required int Id { get; set; }
|
|
public required int SurveyId { get; set; }
|
|
public required string Title { get; set; }
|
|
public required string QuestionType { get; set; }
|
|
public List<OutputAnswerVariantDto>? AnswerVariants { get; set; }
|
|
} |