19 lines
555 B
C#
19 lines
555 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace DamageAssesment.Api.SurveyResponses.Models
|
|||
|
{
|
|||
|
public class Answer
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public int QuestionId { get; set; }
|
|||
|
public string? LocationId { get; set; }
|
|||
|
public string AnswerText { get; set; }
|
|||
|
public string? Comment { get; set; }
|
|||
|
public int SurveyResponseId { get; set; }
|
|||
|
public string? RegionId { get; set; }
|
|||
|
// public string? Name { get; set; }
|
|||
|
// public string? Abbreviation { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|