first commit

This commit is contained in:
2026-06-03 18:31:41 +03:30
commit 01f87cc461
71 changed files with 10802 additions and 0 deletions

15
backend/DTOs/AdminDtos.cs Normal file
View 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; }
}