24 lines
789 B
C#
24 lines
789 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace OnlineAssessment.Domain.Models
|
|||
|
|
{
|
|||
|
|
public partial class QuestionLanguges
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
public int? LanguageId { get; set; }
|
|||
|
|
public int? QuestionId { get; set; }
|
|||
|
|
public string Question { get; set; }
|
|||
|
|
public string Description { get; set; }
|
|||
|
|
public string Direction { get; set; }
|
|||
|
|
public string AnswerExplanation { 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 Languages Language { get; set; }
|
|||
|
|
public virtual Questions QuestionNavigation { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|