FriendsController

This commit is contained in:
Artemy
2025-06-27 19:12:31 +07:00
parent ec44347bbe
commit 05298c004c
17 changed files with 1008 additions and 22 deletions
+11
View File
@@ -0,0 +1,11 @@
using Govor.Core.Models;
namespace Govor.Contracts.DTOs;
public class FriendshipDto
{
public Guid Id { get; set; }
public Guid RequesterId { get; set; }
public Guid AddresseeId { get; set; }
public FriendshipStatus Status { get; set; }
}
+10
View File
@@ -0,0 +1,10 @@
namespace Govor.Contracts.DTOs;
public class UserDto
{
public Guid Id { get; set; }
public string Username { get; set; }
public string Description { get; set; }
public DateTime WasOnline { get; set; }
public Guid IconId {get; set;}
}