namespace SPMS.Application.Interfaces; public interface IEmailService { Task SendVerificationCodeAsync(string email, string code); Task SendPasswordResetTokenAsync(string email, string token); }