Files
OwinOAuthProviders/Owin.Security.Providers/Yammer/Provider/YammerReturnEndpointContext.cs
2014-11-22 18:30:24 -05:00

25 lines
687 B
C#

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