test_keyword.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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_keyword
  16. /// </summary>
  17. public partial class test_keyword
  18. {
  19. public test_keyword()
  20. {
  21. this.test_question_keyword = new HashSet<test_question_keyword>();
  22. }
  23. /// <summary>
  24. /// test_keyword_id
  25. /// </summary>
  26. public decimal test_keyword_id { get; set; }
  27. /// <summary>
  28. /// name
  29. /// </summary>
  30. public string name { get; set; }
  31. /// <summary>
  32. /// other_vaild_values
  33. /// </summary>
  34. public string other_vaild_values { get; set; }
  35. /// <summary>
  36. /// test_question_keyword
  37. /// </summary>
  38. public virtual HashSet<test_question_keyword> test_question_keyword { get; set; }
  39. }
  40. }