16 lines
547 B
C#
16 lines
547 B
C#
namespace backend.DTOs;
|
|
|
|
public class AdminReportItem
|
|
{
|
|
public int UserId { get; set; }
|
|
public string FullName { get; set; } = string.Empty;
|
|
public string Contact { get; set; } = string.Empty;
|
|
public string TrackingCode { get; set; } = string.Empty;
|
|
public bool HasTakenQuiz { get; set; }
|
|
public int ParticipationPoints { get; set; }
|
|
public int CorrectCount { get; set; }
|
|
public int TotalQuizPoints { get; set; }
|
|
public string KhatmTitles { get; set; } = string.Empty;
|
|
public int TotalScore { get; set; }
|
|
}
|