You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
385 B

using System.Threading.Tasks;
/*
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
* See LICENSE in the source repository root for complete license information.
*/
namespace WebApp.Outlook.AuthProvider
{
public interface IAuthProvider
{
Task<string> GetAccessTokenAsync();
Task<string> GetOutlookAccessTokenAsync();
}
}