using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class ImProject { public ImProject() { IaVideoPatrols = new HashSet(); ImDiagrams = new HashSet(); ImFltDistDevGrps = new HashSet(); ImProgControls = new HashSet(); ImStations = new HashSet(); } public string Id { get; set; } = null!; public string Name { get; set; } = null!; public string ProtCommMgrIp { get; set; } = null!; public DateTime CreateTime { get; set; } public string? Creator { get; set; } public virtual ICollection IaVideoPatrols { get; set; } public virtual ICollection ImDiagrams { get; set; } public virtual ICollection ImFltDistDevGrps { get; set; } public virtual ICollection ImProgControls { get; set; } public virtual ICollection ImStations { get; set; } } }