2025-02-16 11:54:23 +01:00
|
|
|
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
|
|
|
|
|
|
public interface IAuthenticatorConfig
|
2024-11-20 01:45:48 +01:00
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
string OutlookAuthenticatorClientId { get; }
|
2026-04-20 19:38:30 +02:00
|
|
|
string[] GetOutlookScope(bool isMailAccessGranted, bool isCalendarAccessGranted);
|
2025-02-16 11:54:23 +01:00
|
|
|
string GmailAuthenticatorClientId { get; }
|
2026-04-20 19:38:30 +02:00
|
|
|
string[] GetGmailScope(bool isMailAccessGranted, bool isCalendarAccessGranted);
|
2025-02-16 11:54:23 +01:00
|
|
|
string GmailTokenStoreIdentifier { get; }
|
2024-11-20 01:45:48 +01:00
|
|
|
}
|