using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class ImStation { public ImStation() { IaMonitorAreas = new HashSet(); IaStatAccCtlers = new HashSet(); IaStatAidVideoDevs = new HashSet(); ImGateWays = new HashSet(); ImNoticeBoards = new HashSet(); ImProtectDevices = new HashSet(); ImSheBeis = new HashSet(); ImVariantBools = new HashSet(); } public string StatCode { get; set; } = null!; public string PrjId { get; set; } = null!; public string StatName { get; set; } = null!; public int SeqNo { get; set; } public virtual ImProject Prj { get; set; } = null!; public virtual ICollection IaMonitorAreas { get; set; } public virtual ICollection IaStatAccCtlers { get; set; } public virtual ICollection IaStatAidVideoDevs { get; set; } public virtual ICollection ImGateWays { get; set; } public virtual ICollection ImNoticeBoards { get; set; } public virtual ICollection ImProtectDevices { get; set; } public virtual ICollection ImSheBeis { get; set; } public virtual ICollection ImVariantBools { get; set; } } }