less shit code but still not good

This commit is contained in:
Вячеслав 2025-04-20 20:33:17 +05:00
parent ddfb5eff54
commit 9e50b97bc9
6 changed files with 14 additions and 47 deletions

View file

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