using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { public class GradeAnalysis { public GradeAnalysis() { subjects = new List(); //passPersent = new List(); } //public List subjectId { get; set; } public string gradeId { get; set; } //public List passPersent { get; set; } //public List averageScore { get; set; } public double GradeaverageScore { get; set; } public List subjects { get; set; } public class GradeSubjectScore { public GradeSubjectScore() { } public string id { get; set; } public double passPercent { get; set; } public double averageScore { get; set; } } } }