23 lines
748 B
C#
23 lines
748 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace OnlineAssessment.Domain.Models
|
|||
|
|
{
|
|||
|
|
public partial class PracticeAttemptAnswers
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
public int PracticeAttemptId { 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? IsVisited { get; set; }
|
|||
|
|
public int? Correctness { get; set; }
|
|||
|
|
public bool? IsActive { get; set; }
|
|||
|
|
|
|||
|
|
public virtual PracticeAttempts PracticeAttempt { get; set; }
|
|||
|
|
public virtual Questions Question { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|