Files
Wino-Mail/Wino.Core.Domain/Interfaces/IAuthenticatorConfig.cs
2025-02-16 11:54:23 +01:00

11 lines
295 B
C#

namespace Wino.Core.Domain.Interfaces;
public interface IAuthenticatorConfig
{
string OutlookAuthenticatorClientId { get; }
string[] OutlookScope { get; }
string GmailAuthenticatorClientId { get; }
string[] GmailScope { get; }
string GmailTokenStoreIdentifier { get; }
}