enabled seed data and changed survey Response project name

This commit is contained in:
uppuv
2023-10-04 15:03:59 -04:00
parent 044876b23b
commit 54d6fab64f
55 changed files with 92 additions and 118 deletions

View File

@ -0,0 +1,18 @@
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; }
public string AnswerText { get; set; }
public string Comment { get; set; }
public int SurveyResponseId { get; set; }
public int RegionId { get; set; }
// public string? Name { get; set; }
// public string? Abbreviation { get; set; }
}
}