StudentAnalysis.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. }
  15. public List<string> ids { get; set; }
  16. public List<double> gpr { get; set; }
  17. public List<double> cpr { get; set; }
  18. public List<Score> scores { get; set; }
  19. public List<double> total { get; set; }
  20. public class Score {
  21. public Score() {
  22. csc = new List<double>();
  23. cdpr = new List<double>();
  24. gdpr = new List<double>();
  25. gsc = new List<double>();
  26. }
  27. public string subjectId { get; set; }
  28. public List<double> csc { get; set; }
  29. public List<double> gsc { get; set; }
  30. public List<double> cdpr { get; set; }
  31. public List<double> gdpr { get; set; }
  32. }
  33. }
  34. }