24 lines
749 B
C#
24 lines
749 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OnlineAssessment.Domain.Models
|
|
{
|
|
public partial class ExamAttempts
|
|
{
|
|
public int Id { get; set; }
|
|
public int ExamId { get; set; }
|
|
public int UserId { get; set; }
|
|
public short? AttemptedSequence { get; set; }
|
|
public string AssessmentStatus { get; set; }
|
|
public short? Score { get; set; }
|
|
public short? AverageTimeTaken { get; set; }
|
|
public DateTime? StartedOn { get; set; }
|
|
public DateTime? CompletedOn { get; set; }
|
|
public string Status { get; set; }
|
|
public bool? IsActive { get; set; }
|
|
|
|
public virtual Exams Exam { get; set; }
|
|
public virtual Users User { get; set; }
|
|
}
|
|
}
|