2024-11-20 01:45:48 +01:00
|
|
|
|
namespace Wino.Core.Domain.Interfaces
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IAuthenticatorConfig
|
|
|
|
|
|
{
|
|
|
|
|
|
string OutlookAuthenticatorClientId { get; }
|
|
|
|
|
|
string[] OutlookScope { get; }
|
|
|
|
|
|
string GmailAuthenticatorClientId { get; }
|
|
|
|
|
|
string[] GmailScope { get; }
|
2024-12-01 03:05:15 +01:00
|
|
|
|
string GmailTokenStoreIdentifier { get; }
|
2024-11-20 01:45:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|