blob: e33779389b9b21ba82afadff7cb7e87f57d5fb5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
using System.Threading.Tasks;
namespace DevHive.Services.Interfaces
{
public interface IFriendsService
{
Task<bool> AddFriend(Guid userId, Guid friendId);
Task<bool> RemoveFriend(Guid userId, Guid friendId);
}
}
|