ImFltDistDevGrp.cs 723 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImFltDistDevGrp
  6. {
  7. public ImFltDistDevGrp()
  8. {
  9. ImFltDistDevices = new HashSet<ImFltDistDevice>();
  10. ImFltDistParams = new HashSet<ImFltDistParam>();
  11. }
  12. public string Id { get; set; } = null!;
  13. public string GrpName { get; set; } = null!;
  14. public string PrjId { get; set; } = null!;
  15. public virtual ImProject Prj { get; set; } = null!;
  16. public virtual ICollection<ImFltDistDevice> ImFltDistDevices { get; set; }
  17. public virtual ICollection<ImFltDistParam> ImFltDistParams { get; set; }
  18. }
  19. }