Files

11 lines
397 B
C#
Raw Permalink Normal View History

2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Interfaces;
public interface IAuthenticatorConfig
{
2025-02-16 11:54:23 +01:00
string OutlookAuthenticatorClientId { get; }
string[] GetOutlookScope(bool isMailAccessGranted, bool isCalendarAccessGranted);
2025-02-16 11:54:23 +01:00
string GmailAuthenticatorClientId { get; }
string[] GetGmailScope(bool isMailAccessGranted, bool isCalendarAccessGranted);
2025-02-16 11:54:23 +01:00
string GmailTokenStoreIdentifier { get; }
}