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; }
|
|
|
|
|
|
string[] OutlookScope { get; }
|
|
|
|
|
|
string GmailAuthenticatorClientId { get; }
|
|
|
|
|
|
string[] GmailScope { get; }
|
|
|
|
|
|
string GmailTokenStoreIdentifier { get; }
|
2024-11-20 01:45:48 +01:00
|
|
|
|
}
|