// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNet.Authentication.OAuth { /// /// Configuration options for . /// public class OAuthAuthenticationOptions : OAuthAuthenticationOptions where TNotifications : IOAuthAuthenticationNotifications { /// /// Gets or sets the used to handle authentication events. /// public TNotifications Notifications { get; set; } } }