21 lines
632 B
C#
21 lines
632 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
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 Hint { get; set; }
|
|||
|
|
public string AnswerExplanation { get; set; }
|
|||
|
|
public bool? IsActive { get; set; }
|
|||
|
|
|
|||
|
|
public virtual Languages Language { get; set; }
|
|||
|
|
public virtual Questions QuestionNavigation { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|