11 lines
293 B
C#
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; }
|
|
}
|
|
}
|