// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ namespace Microsoft.Graph { /// /// The auth middleware option class /// public class AuthenticationHandlerOption : IMiddlewareOption { /// /// An authentication provider /// internal IAuthenticationProvider AuthenticationProvider { get; set; } /// /// An authentication provider option. /// public IAuthenticationProviderOption AuthenticationProviderOption { get; set; } } }