namespace SurveyLib.Core.Models; public class Answer { public int TryId { get; set; } public int SurveyId { get; set; } public int QuestionId { get; set; } public string AnswerText { get; set; } public Survey Survey { get; set; } public QuestionBase Question { get; set; } }