Files
survey-beta/survey-beta/DTOs/Create/CreateResponseDto.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

10 lines
238 B
C#

namespace survey_beta.DTOs.Create
{
public class CreateResponseDto
{
public string IpAddress { get; set; }
public string SurveyId { get; set; }
public List<CreateAnswerDto> Answers { get; set; }
}
}