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