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

6 lines
No EOL
185 B
C#

namespace SurveyBackend.DTOs.Question;
public class OutputSingleAnswerQuestionDto : OutputQuestionBaseDto
{
public List<OutputAnswerVariantDto> AnswerVariants { get; set; } = [];
}