mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
FriendsController
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
@@ -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;}
|
||||
}
|
||||
Reference in New Issue
Block a user