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); } }