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