12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels
- {
- public class SimpleExam
- {
- public SimpleExam()
- {
- Classes = new List<Dictionary<object, int[]>>();
- Result = new List<List<int>>();
- Ids = new List<string>();
- Point = new List<int>();
- }
- public string Name { get; set; }
- public string Time { get; set; }
- public List<Dictionary<object, int[]>> Classes { get; set; }
- public List<List<int>> Result { get; set; }
- public List<string> Ids { get; set; }
- public List<int> Point { get; set; }
- }
- }
|