using Entities.Contracts; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entities.DTO { public class StudentDto { public Guid Id { get; set; } public string? DisplayName { get; set; } public UInt32 ErrorQuestionNum { get; set; } public Dictionary ErrorQuestionTypes { get; set; } = new Dictionary(); public Dictionary SubjectAreaErrorQuestionDis { get; set; } = new Dictionary(); public Dictionary LessonErrorDis { get; set; } = new Dictionary(); public float Score { get; set; } } }