mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
18 lines
351 B
C#
18 lines
351 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SpotifyAPI.Web.Auth
|
|
{
|
|
public interface IAuthServer : IDisposable
|
|
{
|
|
event Func<object, AuthorizationCodeResponse, Task> AuthorizationCodeReceived;
|
|
|
|
event Func<object, ImplictGrantResponse, Task> ImplictGrantReceived;
|
|
|
|
Task Start();
|
|
Task Stop();
|
|
|
|
Uri BaseUri { get; }
|
|
}
|
|
}
|