DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.SurveyResponses/Models/QuestionRequest.cs

11 lines
323 B
C#
Raw Normal View History

2023-08-15 22:52:30 -05:00
namespace DamageAssesment.Api.SurveyResponses.Models
{
public class QuestionRequest
{
public int QuestionId { get; set; }
public string AnswerText { get; set; }
public string Comment { get; set; }
public List<FileModel> PostedFiles { get; set; } = new List<FileModel>();
}
}