practicekea_backend/microservices/_layers/domain/Models2/ExamQuestionsInPractice.cs

22 lines
685 B
C#
Raw Normal View History

2024-12-02 13:24:34 +00:00
using System;
namespace OnlineAssessment.Domain.Models
{
public partial class ExamQuestionsInPractice
{
public int Id { get; set; }
public int PracticeId { get; set; }
public int QuestionId { get; set; }
public short? Mark { get; set; }
public short? NegativeMark { 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 Questions Question { get; set; }
}
}