using System; using System.Collections.Generic; // Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled. // If you have enabled NRTs for your project, then un-comment the following line: // #nullable disable namespace ConsoleISMSMysql.Models { public partial class ImAlertlevel { public ImAlertlevel() { ImAlerttype = new HashSet(); ImDeviceyx = new HashSet(); ImDeviceyxTmp = new HashSet(); ImEventtype = new HashSet(); ImEventtype2010 = new HashSet(); } public string Alertlevelcode { get; set; } public string Alertlevelname { get; set; } public int Color { get; set; } public virtual ICollection ImAlerttype { get; set; } public virtual ICollection ImDeviceyx { get; set; } public virtual ICollection ImDeviceyxTmp { get; set; } public virtual ICollection ImEventtype { get; set; } public virtual ICollection ImEventtype2010 { get; set; } } }