using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models.Cosmos.School { public class ClassAnalysis { public ClassAnalysis() { subjects = new List(); total = new List(); } public int stuCount { get; set; } public int lineCount { get; set; } public List subjects { get; set; } public string classId { get; set; } public string className { get; set; } public List total { get; set; } public double totalAverage { get; set; } public double standardDeviation { get; set; } public class SubjectScore { public SubjectScore() { passPersent = new List(); averageScore = new List(); } public string id { get; set; } public string name { get; set; } public List passPersent { get; set; } public List averageScore { get; set; } } } }