using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace TEAMModelOS.Models.Dto { public class ExamClassResultDto { public string subject { get; set; } public List examClassResult { get; set; } = new List(); } public class ClassResults { public ClassInfo classInfo { get; set; } = new ClassInfo(); public List studentIds { get; set; } = new List(); public List> studentAnswers { get; set; } = new List>(); public List> studentScores { get; set; } = new List>(); public List>> ans { get; set; } = new List>>(); } public class ClassInfo { public string id { get; set; } public string name { get; set; } } }