Spotify.NET/SpotifyAPI.Web/Clients/Interfaces/ISearchClient.cs

10 lines
155 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace SpotifyAPI.Web
{
public interface ISearchClient
{
Task<SearchResponse> Item(SearchRequest request);
}
}