19 lines
546 B
C#
Raw Normal View History

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