using System; using System.Collections.Generic; namespace OnlineAssessment.Domain.Models { public partial class Institutes { public Institutes() { Classes = new HashSet(); Exams = new HashSet(); ModuleRoles = new HashSet(); Plans = new HashSet(); Practices = new HashSet(); Questions = new HashSet(); Users = new HashSet(); } public int Id { get; set; } public string Name { get; set; } public string Domain { get; set; } public string ApiKey { get; set; } public DateTime? DateOfEstablishment { get; set; } public string Address { get; set; } public string City { get; set; } public int? StateId { get; set; } public string Country { get; set; } public string PinCode { get; set; } public string Logo { get; set; } public string ImageUrlSmall { get; set; } public string ImageUrlLarge { get; set; } public int? SubscriptionId { 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 string Theme { get; set; } public virtual States State { get; set; } public virtual Subscriptions Subscription { get; set; } public virtual ICollection Classes { get; set; } public virtual ICollection Exams { get; set; } public virtual ICollection ModuleRoles { get; set; } public virtual ICollection Plans { get; set; } public virtual ICollection Practices { get; set; } public virtual ICollection Questions { get; set; } public virtual ICollection Users { get; set; } } }