using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class ImProtectDeviceTmp { public ImProtectDeviceTmp() { ImDeviceDataTmps = new HashSet(); ImDeviceDzTmps = new HashSet(); } public string Id { get; set; } = null!; public int PuctgyCode { get; set; } public string DeviceName { get; set; } = null!; public virtual ImPuCtgy PuctgyCodeNavigation { get; set; } = null!; public virtual ICollection ImDeviceDataTmps { get; set; } public virtual ICollection ImDeviceDzTmps { get; set; } } }