Spotify.NET/SpotifyAPI.Web/Clients/Interfaces/ISearchClient.cs
2020-05-03 22:34:03 +02:00

10 lines
155 B
C#

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