Files
survey-beta/survey-beta/DTOs/Default/QuestionDto.cs
2025-02-02 13:26:44 +02:00

11 lines
293 B
C#

namespace survey_beta.DTOs.Default
{
public class QuestionDto
{
public string Id { get; set; } = Guid.NewGuid().ToString();
public string Content { get; set; }
public string SurveyId { get; set; }
public List<ChoiceDto> Choices { get; set; }
}
}