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(); ExamQuestionsMarkWeight = new HashSet(); PracticeAttemptAnswers = new HashSet(); PracticeQuestions = new HashSet(); QuestionBugs = new HashSet(); QuestionCategories = new HashSet(); QuestionLanguges = new HashSet(); QuestionOptions = new HashSet(); QuestionTags = 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 string Image { get; set; } public string Source { get; set; } public int TypeId { 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 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 ExamQuestionsMarkWeight { get; set; } public virtual ICollection PracticeAttemptAnswers { get; set; } public virtual ICollection PracticeQuestions { get; set; } public virtual ICollection QuestionBugs { get; set; } public virtual ICollection QuestionCategories { get; set; } public virtual ICollection QuestionLanguges { get; set; } public virtual ICollection QuestionOptions { get; set; } public virtual ICollection QuestionTags { get; set; } } }