removed the authored surveys property removed the responses property removed CreateAnswerDto&AnswerDto
11 lines
283 B
C#
11 lines
283 B
C#
namespace survey_beta.DTOs.Default
|
|
{
|
|
public class ChoiceDto
|
|
{
|
|
public string Id { get; set; } = Guid.NewGuid().ToString();
|
|
public string Letter { get; set; }
|
|
public string Content { get; set; }
|
|
public string QuestionId { get; set; }
|
|
}
|
|
}
|