11 lines
397 B
C#
11 lines
397 B
C#
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
public interface IAuthenticatorConfig
|
|
{
|
|
string OutlookAuthenticatorClientId { get; }
|
|
string[] GetOutlookScope(bool isMailAccessGranted, bool isCalendarAccessGranted);
|
|
string GmailAuthenticatorClientId { get; }
|
|
string[] GetGmailScope(bool isMailAccessGranted, bool isCalendarAccessGranted);
|
|
string GmailTokenStoreIdentifier { get; }
|
|
}
|