mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-10 15:05:19 +00:00
14 lines
289 B
C#
14 lines
289 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace O365Clinic.Function.Webhooks.Interfaces
|
|
{
|
|
public interface IAuthenticationService
|
|
{
|
|
Task<string> GetAccessTokenAsync(string[] scopes);
|
|
}
|
|
}
|