Created all endpoints to manage groups
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user