first commit
This commit is contained in:
15
backend/DTOs/AdminDtos.cs
Normal file
15
backend/DTOs/AdminDtos.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user