8 lines
257 B
C#
8 lines
257 B
C#
namespace MemberCenter.Application.Abstractions;
|
|
|
|
public interface IAccountEmailService
|
|
{
|
|
Task SendVerificationEmailAsync(Guid userId, string? fallbackBaseUrl = null);
|
|
Task SendPasswordResetEmailAsync(Guid userId, string? fallbackBaseUrl = null);
|
|
}
|