25 lines
848 B
C#
25 lines
848 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace OnlineAssessment.Domain.Models
|
|||
|
|
{
|
|||
|
|
public partial class ExamQuestionsMarkWeight
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
public int ExamSectionId { get; set; }
|
|||
|
|
public int QuestionId { get; set; }
|
|||
|
|
public double? MarkForCorrectAnswer { get; set; }
|
|||
|
|
public double? MarkForWrongAnswer { get; set; }
|
|||
|
|
public short? TotalMarks { 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 ExamSections ExamSection { get; set; }
|
|||
|
|
public virtual Questions Question { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|