using System; using System.Collections.Generic; namespace OnlineAssessment.Domain.Models { public partial class Users { public Users() { ActivityLogs = new HashSet(); BookmarkedExams = new HashSet(); BookmarkedPractices = new HashSet(); BookmarkedQuestions = new HashSet(); ExamAttemptsAssessment = new HashSet(); ExamSections = new HashSet(); Exams = new HashSet(); OrderPaymentCreatedByNavigation = new HashSet(); OrderPaymentUpdatedByNavigation = new HashSet(); OrderPaymentUser = new HashSet(); OrdersCreatedByNavigation = new HashSet(); OrdersUpdatedByNavigation = new HashSet(); PasswordReset = new HashSet(); PracticeAttemptsCreatedByNavigation = new HashSet(); PracticeAttemptsUpdatedByNavigation = new HashSet(); PracticesCreatedByNavigation = new HashSet(); PracticesUpdatedByNavigation = new HashSet(); QuestionBugsCreatedByNavigation = new HashSet(); QuestionBugsUpdatedByNavigation = new HashSet(); Questions = new HashSet(); SubscribedExamsCreatedByNavigation = new HashSet(); SubscribedExamsUpdatedByNavigation = new HashSet(); SubscribedPracticesCreatedByNavigation = new HashSet(); SubscribedPracticesUpdatedByNavigation = new HashSet(); Subscriptions = new HashSet(); UserGroupMembers = new HashSet(); UserLogs = new HashSet(); } public int Id { get; set; } public int RoleId { get; set; } public int InstituteId { get; set; } public int? LanguageId { get; set; } public int? RegistrationId { get; set; } public DateTime? RegistrationDatetime { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public DateTime? DateOfBirth { get; set; } public string Gender { get; set; } public string EmailId { get; set; } public string MobileNo { get; set; } public string Photo { get; set; } public string Address { get; set; } public string City { get; set; } public string Country { get; set; } public string PinCode { get; set; } public string Latitude { get; set; } public string Longitude { get; set; } public string UserPassword { get; set; } public string UserSalt { get; set; } public string AccessToken { 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 int? BatchId { get; set; } public string Uuid { get; set; } public string StateCode { get; set; } public virtual UserGroups Batch { get; set; } public virtual Institutes Institute { get; set; } public virtual Languages Language { get; set; } public virtual Roles Role { get; set; } public virtual ICollection ActivityLogs { get; set; } public virtual ICollection BookmarkedExams { get; set; } public virtual ICollection BookmarkedPractices { get; set; } public virtual ICollection BookmarkedQuestions { get; set; } public virtual ICollection ExamAttemptsAssessment { get; set; } public virtual ICollection ExamSections { get; set; } public virtual ICollection Exams { get; set; } public virtual ICollection OrderPaymentCreatedByNavigation { get; set; } public virtual ICollection OrderPaymentUpdatedByNavigation { get; set; } public virtual ICollection OrderPaymentUser { get; set; } public virtual ICollection OrdersCreatedByNavigation { get; set; } public virtual ICollection OrdersUpdatedByNavigation { get; set; } public virtual ICollection PasswordReset { get; set; } public virtual ICollection PracticeAttemptsCreatedByNavigation { get; set; } public virtual ICollection PracticeAttemptsUpdatedByNavigation { get; set; } public virtual ICollection PracticesCreatedByNavigation { get; set; } public virtual ICollection PracticesUpdatedByNavigation { get; set; } public virtual ICollection QuestionBugsCreatedByNavigation { get; set; } public virtual ICollection QuestionBugsUpdatedByNavigation { get; set; } public virtual ICollection Questions { get; set; } public virtual ICollection SubscribedExamsCreatedByNavigation { get; set; } public virtual ICollection SubscribedExamsUpdatedByNavigation { get; set; } public virtual ICollection SubscribedPracticesCreatedByNavigation { get; set; } public virtual ICollection SubscribedPracticesUpdatedByNavigation { get; set; } public virtual ICollection Subscriptions { get; set; } public virtual ICollection UserGroupMembers { get; set; } public virtual ICollection UserLogs { get; set; } } }