Spotify.NET/SpotifyAPI.Web/Authenticators/IAuthenticator.cs

11 lines
191 B
C#
Raw Normal View History

2020-05-01 19:05:28 +01:00
using System.Threading.Tasks;
2020-06-03 16:44:13 +01:00
using SpotifyAPI.Web.Http;
2020-05-01 19:05:28 +01:00
2020-06-03 16:44:13 +01:00
namespace SpotifyAPI.Web
2020-05-01 19:05:28 +01:00
{
public interface IAuthenticator
{
Task Apply(IRequest request, IAPIConnector apiConnector);
2020-05-01 19:05:28 +01:00
}
}