11 lines
315 B
C#
Raw Normal View History

2023-10-04 18:45:51 -04:00
namespace DamageAssesment.Api.Responses.Models
2023-08-15 23:52:30 -04:00
{
public class AnswerRequest
{
public int QuestionId { get; set; }
public string AnswerText { get; set; }
public string Comment { get; set; }
public List<FileModel> PostedFiles { get; set; } = new List<FileModel>();
2023-08-15 23:52:30 -04:00
}
}