Added missing field in dto of friends

This commit is contained in:
2026-03-28 13:43:55 +01:00
parent 0c5d3c18dc
commit c93becfbb4
2 changed files with 2 additions and 0 deletions
@@ -2,6 +2,7 @@
public class GetFriendDto
{
public int FriendId { get; set; }
public string? Username { get; set; }
public int Score { get; set; }
}
@@ -2,6 +2,7 @@
public class GetFriendRequestDto
{
public int FriendId { get; set; }
public string? Username { get; set; }
public int Score { get; set; }
}