using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models.Cosmos.School { 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() { passPersent = new List(); averageScore = new List(); } public string id { get; set; } public List passPersent { get; set; } public List averageScore { get; set; } } } }