Files
Wino-Mail/Wino.Core.Domain/Interfaces/IAuthenticatorConfig.cs
T
2026-04-20 19:38:37 +02:00

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; }
}