19 lines
533 B
C#
19 lines
533 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
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 bool? IsActive { get; set; }
|
|
|
|
public virtual ExamPractices Practice { get; set; }
|
|
public virtual Questions Question { get; set; }
|
|
}
|
|
}
|