mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
11 lines
191 B
C#
11 lines
191 B
C#
using System.Threading.Tasks;
|
|
using SpotifyAPI.Web.Http;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public interface IAuthenticator
|
|
{
|
|
Task Apply(IRequest request, IAPIConnector apiConnector);
|
|
}
|
|
}
|