using System.Collections.Generic; using System.Threading.Tasks; namespace SpotifyAPI.Web { public interface IFollowClient { Task> CheckCurrentUser(FollowCheckCurrentUserRequest request); Task> CheckPlaylist(string playlistId, FollowCheckPlaylistRequest request); Task Follow(FollowRequest request); Task FollowPlaylist(string playlistId); Task FollowPlaylist(string playlistId, FollowPlaylistRequest request); Task OfCurrentUser(); Task OfCurrentUser(FollowOfCurrentUserRequest request); Task Unfollow(UnfollowRequest request); Task UnfollowPlaylist(string playlistId); } }