namespace DamageAssesment.Api.SurveyResponses.Models { public class AnswerRequest { public int QuestionId { get; set; } public string AnswerText { get; set; } public string Comment { get; set; } public List PostedFiles { get; set; } = new List(); } }