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 ImProject { public ImProject() { ImDiagram = new HashSet(); ImProgcontrol = new HashSet(); ImStation = new HashSet(); } public string Id { get; set; } public string Name { get; set; } public string Protcommmgrip { get; set; } public DateTime Createtime { get; set; } public string Creator { get; set; } public virtual ICollection ImDiagram { get; set; } public virtual ICollection ImProgcontrol { get; set; } public virtual ICollection ImStation { get; set; } } }