blob: 6ab7b905319656b99b7c4a2be2ee697b97007dd6 (
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<object> AddFriend(Guid userId, Guid friendId);
Task<object> RemoveFriend(Guid userId, Guid friendId);
}
}
|