forked from MDCPS/DamageAssessment_Backend
Copy from old Repository
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace DamageAssesment.Api.Answers.Models
|
||||
{
|
||||
public class Answer
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int QuestionId { get; set; }
|
||||
|
||||
[StringLength(250)]
|
||||
public string AnswerText { get; set; }
|
||||
public string Comment { get; set; }
|
||||
public int? SurveyResponseId { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user