11 lines
323 B
C#
11 lines
323 B
C#
|
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>();
|
|||
|
}
|
|||
|
}
|