Spotify.NET/SpotifyAPI.Web/Http/Interfaces/IAuthenticator.cs
2020-05-01 20:05:28 +02:00

10 lines
141 B
C#

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