StudentAnalysis.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 subjectId { get; set; }
  30. public List<double> csc { get; set; }
  31. public List<double> gsc { get; set; }
  32. public List<double> cdpr { get; set; }
  33. public List<double> gdpr { get; set; }
  34. }
  35. }
  36. }