practicekea_backend/microservices/_layers/domain/ModelsOld/ExamQuestionsMarkWeight.cs

21 lines
660 B
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
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 short? MarkForCorrectAnswer { get; set; }
public short? MarkForWrongAnswer { get; set; }
public short? TotalMarks { get; set; }
public short? QuestionSequence { get; set; }
public bool? IsActive { get; set; }
public virtual ExamSections ExamSection { get; set; }
public virtual Questions Question { get; set; }
}
}