using System; using System.Collections.Generic; namespace OnlineAssessment.Domain.Models { public partial class ExamAttemptsAnswer { public int Id { get; set; } public int ExamAttemptId { get; set; } public int QuestionId { get; set; } public DateTime DateOfAnswer { get; set; } public int AnswerDurationSeconds { get; set; } public string StudentAnswer { get; set; } public string Doubt { get; set; } public bool? IsCorrect { get; set; } public bool? IsVisited { get; set; } public bool? IsReviewed { get; set; } public bool? IsActive { get; set; } public double? Score { get; set; } public virtual ExamAttempts ExamAttempt { get; set; } public virtual Questions Question { get; set; } } }