23 lines
725 B
C#
23 lines
725 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OnlineAssessment.Domain.Models
|
|
{
|
|
public partial class PracticeQuestions
|
|
{
|
|
public int Id { get; set; }
|
|
public int PracticeId { get; set; }
|
|
public int QuestionId { get; set; }
|
|
public double? DurationSeconds { get; set; }
|
|
public short? QuestionSequence { 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 Practices Practice { get; set; }
|
|
public virtual Questions Question { get; set; }
|
|
}
|
|
}
|