2023-08-15 22:52:30 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.SurveyResponses.Models
|
|
|
|
|
{
|
|
|
|
|
public class Answer
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public int QuestionId { get; set; }
|
2023-09-13 00:28:24 -05:00
|
|
|
|
public int LocationId { get; set; }
|
2023-08-15 22:52:30 -05:00
|
|
|
|
public string AnswerText { get; set; }
|
2023-09-13 00:28:24 -05:00
|
|
|
|
public string Comment { get; set; }
|
2023-08-15 22:52:30 -05:00
|
|
|
|
public int SurveyResponseId { get; set; }
|
2023-09-13 00:28:24 -05:00
|
|
|
|
public int RegionId { get; set; }
|
2023-08-15 22:52:30 -05:00
|
|
|
|
// public string? Name { get; set; }
|
|
|
|
|
// public string? Abbreviation { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|