Files
OwinOAuthProviders/Owin.Security.Providers/Asana/Provider/AsanaReturnEndpointContext.cs
2015-02-04 16:42:13 -05:00

27 lines
809 B
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using Microsoft.Owin;
using Microsoft.Owin.Security;
using Microsoft.Owin.Security.Provider;
namespace Owin.Security.Providers.Asana
{
/// <summary>
/// Provides context information to middleware providers.
/// </summary>
public class AsanaReturnEndpointContext : ReturnEndpointContext
{
/// <summary>
///
/// </summary>
/// <param name="context">OWIN environment</param>
/// <param name="ticket">The authentication ticket</param>
public AsanaReturnEndpointContext(
IOwinContext context,
AuthenticationTicket ticket)
: base(context, ticket)
{
}
}
}