Spotify.NET/SpotifyAPI.Web/Authenticators/IAuthenticator.cs
2020-06-03 17:44:13 +02:00

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);
}
}