namespace SurveyLib.Core.Models; public class Answer { public int CompletionId { get; set; } public int QuestionId { get; set; } public string AnswerText { get; set; } public Completion Completion { get; set; } public QuestionBase Question { get; set; } }