DocSpace-buildtools/thirdparty/Microsoft.Graph.Core/Requests/Middleware/Options/IAuthenticationProviderOption.cs
2020-07-10 18:37:02 +03:00

19 lines
793 B
C#

// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
namespace Microsoft.Graph
{
/// <summary>
/// An interface used to pass auth provider options in a request.
/// Auth providers will be incharge of implementing this interface and providing <see cref="IBaseRequest"/> extensions to set it's values.
/// </summary>
public interface IAuthenticationProviderOption
{
/// <summary>
/// Microsoft Graph scopes property.
/// </summary>
string[] Scopes { get; set; }
}
}