Initial commit.
This commit is contained in:
13
Wino.Core/Authenticators/Office365Authenticator.cs
Normal file
13
Wino.Core/Authenticators/Office365Authenticator.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Wino.Core.Domain.Enums;
|
||||
using Wino.Core.Domain.Interfaces;
|
||||
using Wino.Core.Services;
|
||||
|
||||
namespace Wino.Core.Authenticators
|
||||
{
|
||||
public class Office365Authenticator : OutlookAuthenticator
|
||||
{
|
||||
public Office365Authenticator(ITokenService tokenService, INativeAppService nativeAppService) : base(tokenService, nativeAppService) { }
|
||||
|
||||
public override MailProviderType ProviderType => MailProviderType.Office365;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user