SimpleExam.cs 698 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels
  5. {
  6. public class SimpleExam
  7. {
  8. public SimpleExam()
  9. {
  10. Classes = new List<Dictionary<object, int[]>>();
  11. Result = new List<List<int>>();
  12. Ids = new List<string>();
  13. Point = new List<int>();
  14. }
  15. public string Name { get; set; }
  16. public string Time { get; set; }
  17. public List<Dictionary<object, int[]>> Classes { get; set; }
  18. public List<List<int>> Result { get; set; }
  19. public List<string> Ids { get; set; }
  20. public List<int> Point { get; set; }
  21. }
  22. }