using System; using System.Collections.Generic; namespace OnlineAssessment.Domain.Models { public partial class ExamAttemptsAssessment { public int Id { get; set; } public int ExamSectionId { get; set; } public int QuestionId { get; set; } public int UserId { get; set; } public DateTime? DateOfAnswer { get; set; } public int? TimeTakenToAnswerInSeconds { get; set; } public string StudentAnswer { get; set; } public string Correctness { get; set; } public string Assessement { get; set; } public bool? IsActive { get; set; } public virtual ExamSections ExamSection { get; set; } public virtual Questions Question { get; set; } public virtual Users User { get; set; } } }