11 lines
279 B
C#
11 lines
279 B
C#
|
|
namespace Wino.Core.Domain.Interfaces
|
|||
|
|
{
|
|||
|
|
public interface IAuthenticatorConfig
|
|||
|
|
{
|
|||
|
|
string OutlookAuthenticatorClientId { get; }
|
|||
|
|
string[] OutlookScope { get; }
|
|||
|
|
string GmailAuthenticatorClientId { get; }
|
|||
|
|
string[] GmailScope { get; }
|
|||
|
|
}
|
|||
|
|
}
|