blob: 52f23f384ef55fcff61ac50652c9ecc1d05eebdb (
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, string friendUsername);
Task<bool> RemoveFriend(Guid userId, string friendUsername);
}
}
|