ExamClassResultDto.cs 893 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace TEAMModelOS.Models.Dto
  6. {
  7. public class ExamClassResultDto
  8. {
  9. public string subject { get; set; }
  10. public List<ClassResults> examClassResult { get; set; } = new List<ClassResults>();
  11. }
  12. public class ClassResults
  13. {
  14. public ClassInfo classInfo { get; set; } = new ClassInfo();
  15. public List<string> studentIds { get; set; } = new List<string>();
  16. public List<List<string>> studentAnswers { get; set; } = new List<List<string>>();
  17. public List<List<double>> studentScores { get; set; } = new List<List<double>>();
  18. public List<List<List<string>>> ans { get; set; } = new List<List<List<string>>>();
  19. }
  20. public class ClassInfo {
  21. public string id { get; set; }
  22. public string name { get; set; }
  23. }
  24. }