Files
OwinOAuthProviders/Owin.Security.Providers/SoundCloud/Provider/SoundCloudReturnEndpointContext.cs
2015-03-14 18:39:27 +00:00

21 lines
667 B
C#

using Microsoft.Owin;
using Microsoft.Owin.Security;
using Microsoft.Owin.Security.Provider;
namespace Owin.Security.Providers.SoundCloud.Provider
{
/// <summary>
/// Provides context information to middleware providers.
/// </summary>
public class SoundCloudReturnEndpointContext : ReturnEndpointContext
{
/// <summary>
/// </summary>
/// <param name="context">OWIN environment</param>
/// <param name="ticket">The authentication ticket</param>
public SoundCloudReturnEndpointContext(IOwinContext context, AuthenticationTicket ticket)
: base(context, ticket)
{
}
}
}