Spotify.NET/SpotifyAPI.Web/Http/Interfaces/IAuthenticator.cs
2020-05-13 23:49:54 +02:00

10 lines
169 B
C#

using System.Threading.Tasks;
namespace SpotifyAPI.Web.Http
{
public interface IAuthenticator
{
Task Apply(IRequest request, IAPIConnector apiConnector);
}
}