using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels { public class SimpleExam { public SimpleExam() { Classes = new List>(); Result = new List>(); Ids = new List(); Point = new List(); } public string Name { get; set; } public string Time { get; set; } public List> Classes { get; set; } public List> Result { get; set; } public List Ids { get; set; } public List Point { get; set; } } }