ExamPaper.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. /// ExamPaper
  16. /// </summary>
  17. public partial class ExamPaper
  18. {
  19. /// <summary>
  20. /// ID
  21. /// </summary>
  22. public System.Guid ID { get; set; }
  23. /// <summary>
  24. /// user_id
  25. /// </summary>
  26. public string user_id { get; set; }
  27. /// <summary>
  28. /// onlinetest_id
  29. /// </summary>
  30. public decimal onlinetest_id { get; set; }
  31. /// <summary>
  32. /// Sign
  33. /// </summary>
  34. public Nullable<bool> Sign { get; set; }
  35. /// <summary>
  36. /// test_questions_Id
  37. /// </summary>
  38. public decimal test_questions_Id { get; set; }
  39. /// <summary>
  40. /// display_order
  41. /// </summary>
  42. public Nullable<int> display_order { get; set; }
  43. /// <summary>
  44. /// answer_order
  45. /// </summary>
  46. public string answer_order { get; set; }
  47. /// <summary>
  48. /// base_question_type_id
  49. /// </summary>
  50. public decimal base_question_type_id { get; set; }
  51. /// <summary>
  52. /// filled
  53. /// </summary>
  54. public bool filled { get; set; }
  55. /// <summary>
  56. /// time_of_filling
  57. /// </summary>
  58. public Nullable<System.DateTime> time_of_filling { get; set; }
  59. }
  60. }