using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models.Cosmos.Student { public class StudentAnalysis { public StudentAnalysis() { ids = new List(); scores = new List(); gpr = new List(); cpr = new List(); total = new List(); names = new List(); } public List ids { get; set; } public List names { get; set; } public List gpr { get; set; } public List cpr { get; set; } public List scores { get; set; } public List total { get; set; } public class Score { public Score() { csc = new List(); cdpr = new List(); gdpr = new List(); gsc = new List(); } public string subjectId { get; set; } public List csc { get; set; } public List gsc { get; set; } public List cdpr { get; set; } public List gdpr { get; set; } } } }