Created endpoints to manage friends

This commit is contained in:
2026-02-22 12:02:44 +01:00
parent a701909d9d
commit f1ef5302c1
19 changed files with 283 additions and 45 deletions
@@ -0,0 +1,7 @@
namespace BeReadyBackend.DTO.Friends;
public class GetFriendDto
{
public string? Username { get; set; }
public int Score { get; set; }
}
@@ -0,0 +1,7 @@
namespace BeReadyBackend.DTO.Friends;
public class GetFriendRequestDto
{
public string? Username { get; set; }
public int Score { get; set; }
}