Spotify.NET/SpotifyAPI.Web/Http/Interfaces/IAuthenticator.cs

10 lines
141 B
C#
Raw Normal View History

2020-05-01 19:05:28 +01:00
using System.Threading.Tasks;
namespace SpotifyAPI.Web.Http
{
public interface IAuthenticator
{
Task Apply(IRequest request);
}
}