27 lines
911 B
C#
27 lines
911 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OnlineAssessment.Domain.Models
|
|
{
|
|
public partial class ExamPracticeAttempts
|
|
{
|
|
public int Id { get; set; }
|
|
public int PracticeId { get; set; }
|
|
public int UserId { get; set; }
|
|
public short? AttemptedSequence { get; set; }
|
|
public short? Score { get; set; }
|
|
public int? AverageTimeTakenSeconds { get; set; }
|
|
public DateTime? StartedOn { get; set; }
|
|
public DateTime? CompletedOn { get; set; }
|
|
public string Status { get; set; }
|
|
public DateTime? CreatedOn { get; set; }
|
|
public int? CreatedBy { get; set; }
|
|
public DateTime? UpdatedOn { get; set; }
|
|
public int? UpdatedBy { get; set; }
|
|
public bool? IsActive { get; set; }
|
|
|
|
public virtual ExamPractices Practice { get; set; }
|
|
public virtual Users User { get; set; }
|
|
}
|
|
}
|