QuestionSettingJsonObj.cs 385 B

1234567891011121314151617181920212223
  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 QuestionSettingJsonObj
  8. {
  9. public decimal QType
  10. { get; set; }
  11. public int PSum
  12. { get; set; }
  13. public int TSum
  14. { get; set; }
  15. public decimal QScore
  16. { get; set; }
  17. }
  18. }