test_comm_set.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace EMISOnline.Entities
  10. {
  11. #pragma warning disable 1573
  12. using System;
  13. using System.Collections.Generic;
  14. /// <summary>
  15. /// test_comm_set
  16. /// </summary>
  17. public partial class test_comm_set
  18. {
  19. public test_comm_set()
  20. {
  21. this.test_comm_param_set = new HashSet<test_comm_param_set>();
  22. }
  23. /// <summary>
  24. /// comm_set_id
  25. /// </summary>
  26. public decimal comm_set_id { get; set; }
  27. /// <summary>
  28. /// note
  29. /// </summary>
  30. public string note { get; set; }
  31. /// <summary>
  32. /// test_comm_param_set
  33. /// </summary>
  34. public virtual HashSet<test_comm_param_set> test_comm_param_set { get; set; }
  35. }
  36. }