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.

15 lines
385 B

2 years ago
  1. using System.Threading.Tasks;
  2. /*
  3. * Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
  4. * See LICENSE in the source repository root for complete license information.
  5. */
  6. namespace WebApp.Outlook.AuthProvider
  7. {
  8. public interface IAuthProvider
  9. {
  10. Task<string> GetAccessTokenAsync();
  11. Task<string> GetOutlookAccessTokenAsync();
  12. }
  13. }