12 lines
329 B
C#
12 lines
329 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; }
|
|
}
|
|
}
|