Files
Wino-Mail/Wino.Authentication/BaseAuthenticator.cs

17 lines
407 B
C#
Raw Normal View History

using Wino.Core.Domain.Enums;
using Wino.Core.Domain.Interfaces;
2025-02-16 11:54:23 +01:00
namespace Wino.Authentication;
public abstract class BaseAuthenticator
{
2025-02-16 11:54:23 +01:00
public abstract MailProviderType ProviderType { get; }
protected IAuthenticatorConfig AuthenticatorConfig { get; }
2025-02-16 11:54:23 +01:00
protected BaseAuthenticator(IAuthenticatorConfig authenticatorConfig)
{
2025-02-16 11:54:23 +01:00
AuthenticatorConfig = authenticatorConfig;
}
}