using AMREZ.EOP.Contracts.DTOs.Authentications.VerifyEmail; namespace AMREZ.EOP.Abstractions.Applications.UseCases.Authentications; public interface IVerifyEmailUseCase { Task ExecuteAsync(VerifyEmailRequest request, CancellationToken ct = default); }