removed the authored surveys property removed the responses property removed CreateAnswerDto&AnswerDto
11 lines
266 B
C#
11 lines
266 B
C#
namespace survey_beta.DTOs.Default
|
|
{
|
|
public class ResponseDto
|
|
{
|
|
public string Id { get; set; }
|
|
public string IpAddress { get; set; }
|
|
public string SurveyId { get; set; }
|
|
public List<AnswerDto> Answers { get; set; }
|
|
}
|
|
}
|