using System; using System.Collections.Generic; namespace OnlineAssessment.Domain.Models { public partial class Questions { public Questions() { BookmarkedQuestions = new HashSet(); ExamAttemptsAnswer = new HashSet(); ExamAttemptsAssessment = new HashSet(); ExamQuestionsInPractice = new HashSet(); ExamQuestionsMarkWeight = new HashSet(); QuestionLanguges = new HashSet(); QuestionOptions = new HashSet(); QuestionSubCategories = new HashSet(); QuestionTags = new HashSet(); StudentAnswers = new HashSet(); } public int Id { get; set; } public int InstituteId { get; set; } public int AuthorId { get; set; } public string StatusCode { get; set; } public short? ComplexityCode { get; set; } public byte[] Image { get; set; } public string Source { get; set; } public int TypeId { get; set; } public int? AnswerOptionId { get; set; } public DateTime? CreatedOn { get; set; } public DateTime? UpdatedOn { get; set; } public bool? IsActive { get; set; } public virtual Users Author { get; set; } public virtual Institutes Institute { get; set; } public virtual QuestionTypes Type { get; set; } public virtual ICollection BookmarkedQuestions { get; set; } public virtual ICollection ExamAttemptsAnswer { get; set; } public virtual ICollection ExamAttemptsAssessment { get; set; } public virtual ICollection ExamQuestionsInPractice { get; set; } public virtual ICollection ExamQuestionsMarkWeight { get; set; } public virtual ICollection QuestionLanguges { get; set; } public virtual ICollection QuestionOptions { get; set; } public virtual ICollection QuestionSubCategories { get; set; } public virtual ICollection QuestionTags { get; set; } public virtual ICollection StudentAnswers { get; set; } } }