namespace CompetitionAPI.api.back
{
public class GetEndExamResponse
{
///
/// 考试id
///
public string ExamId { get; set; }
///
/// 考试名称
///
public string ExamName { get; set; }
///
/// 数据
///
public ScoreStatisticsData Data { get; set; }
}
public class ScoreStatisticsData
{
///
/// 优秀数量
///
public int ExcellentCount { get; set; }
///
/// 良好数量
///
public int GoodCount { get; set; }
///
/// 中等数量
///
public int SecondaryCount { get; set; }
///
/// 较差数量
///
public int PoorCount { get; set; }
}
}