21 lines
675 B
C#
21 lines
675 B
C#
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<QuestionType, UInt32> ErrorQuestionTypes { get; set; } = new Dictionary<QuestionType, UInt32>();
|
|
public Dictionary<SubjectAreaEnum, UInt32> SubjectAreaErrorQuestionDis { get; set; } = new Dictionary<SubjectAreaEnum, UInt32>();
|
|
public Dictionary<byte, UInt32> LessonErrorDis { get; set; } = new Dictionary<byte, UInt32>();
|
|
}
|
|
}
|