25 lines
829 B
C#
25 lines
829 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace OnlineAssessment.Domain.Models
|
|||
|
|
{
|
|||
|
|
public partial class ExamAttemptsAnswer
|
|||
|
|
{
|
|||
|
|
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 Comments { get; set; }
|
|||
|
|
public string Correctness { get; set; }
|
|||
|
|
public string StudentAnswer { get; set; }
|
|||
|
|
public string Doubt { 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; }
|
|||
|
|
}
|
|||
|
|
}
|