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