11 lines
295 B
C#
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; }
|
|
}
|