PageSetupParam.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMISOnline.ViewModel.ExamView
  6. {
  7. public class PageSetupParam
  8. {
  9. public string PageName
  10. {
  11. get;
  12. set;
  13. }
  14. public string QuesLib
  15. {
  16. get;
  17. set;
  18. }
  19. public string QuesLevel
  20. {
  21. get;
  22. set;
  23. }
  24. public string QuesChooseSort
  25. {
  26. get;
  27. set;
  28. }
  29. public string PageType
  30. {
  31. get;
  32. set;
  33. }
  34. public string QuesSetting
  35. {
  36. get;
  37. set;
  38. }
  39. public string QuesDis
  40. {
  41. get;
  42. set;
  43. }
  44. public string IsEnable
  45. {
  46. get;
  47. set;
  48. }
  49. public string ErrRate
  50. {
  51. get;
  52. set;
  53. }
  54. public string UseCount
  55. {
  56. get;
  57. set;
  58. }
  59. }
  60. }