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 ImStation { public ImStation() { ImGateway = new HashSet(); ImNoticeboard = new HashSet(); ImProtectdevice = new HashSet(); ImShebei = new HashSet(); ImVariantBool = new HashSet(); } public string Statcode { get; set; } public string Prjid { get; set; } public string Statname { get; set; } public int Seqno { get; set; } public virtual ImProject Prj { get; set; } public virtual ICollection ImGateway { get; set; } public virtual ICollection ImNoticeboard { get; set; } public virtual ICollection ImProtectdevice { get; set; } public virtual ICollection ImShebei { get; set; } public virtual ICollection ImVariantBool { get; set; } } }