StudentAnalysis.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models.Cosmos.Student
  5. {
  6. public class StudentAnalysis
  7. {
  8. public StudentAnalysis() {
  9. ids = new List<string>();
  10. scores = new List<Score>();
  11. gpr = new List<double>();
  12. cpr = new List<double>();
  13. total = new List<double>();
  14. names = new List<string>();
  15. }
  16. public List<string> ids { get; set; }
  17. public List<string> names { get; set; }
  18. public List<double> gpr { get; set; }
  19. public List<double> cpr { get; set; }
  20. public List<Score> scores { get; set; }
  21. public List<double> total { get; set; }
  22. public class Score {
  23. public Score() {
  24. csc = new List<double>();
  25. cdpr = new List<double>();
  26. gdpr = new List<double>();
  27. gsc = new List<double>();
  28. }
  29. public string subjectName { get; set; }
  30. public string subjectId { get; set; }
  31. public List<double> csc { get; set; }
  32. public List<double> gsc { get; set; }
  33. public List<double> cdpr { get; set; }
  34. public List<double> gdpr { get; set; }
  35. }
  36. }
  37. }