using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class ImAlertLevel { public ImAlertLevel() { ImAlertTypes = new HashSet(); ImDeviceYxTmps = new HashSet(); ImDeviceYxes = new HashSet(); ImEventType2010s = new HashSet(); ImEventTypes = new HashSet(); } public string AlertLevelCode { get; set; } = null!; public string AlertLevelName { get; set; } = null!; public int Color { get; set; } public virtual ICollection ImAlertTypes { get; set; } public virtual ICollection ImDeviceYxTmps { get; set; } public virtual ICollection ImDeviceYxes { get; set; } public virtual ICollection ImEventType2010s { get; set; } public virtual ICollection ImEventTypes { get; set; } } }