Files
survey-beta/survey-beta/DTOs/Default/ResponseDto.cs
m.bengashier 77fc9dfd92 PATCH :
removed the authored surveys property
removed the responses property
removed CreateAnswerDto&AnswerDto
2025-01-26 13:28:40 +02:00

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; }
}
}