AuthorBuddy/Services/IEmailService.cs

8 lines
202 B
C#
Raw Normal View History

2026-06-21 07:52:03 +02:00
namespace AuthorBuddy.Web.Services;
public interface IEmailService
{
Task<bool> SendPasswordAsync(string recipientEmail, string recipientName, string newPassword);
bool IsConfigured { get; }
}