Created all endpoints to manage groups

This commit is contained in:
2026-02-22 18:39:41 +01:00
parent c67cdf8dd8
commit 9301800d0b
15 changed files with 418 additions and 1 deletions
@@ -0,0 +1,8 @@
namespace BeReadyBackend.DTO.Groups;
public class GetGroupRankingDto
{
public int UserId { get; set; }
public string? Username { get; set; }
public int Score { get; set; }
}
+9
View File
@@ -0,0 +1,9 @@
namespace BeReadyBackend.DTO.Groups;
public class GetProofDto
{
public int UserId { get; set; }
public string? Username { get; set; }
public string? Proof { get; set; }
public int Score { get; set; }
}