8 lines
263 B
C#
8 lines
263 B
C#
using AMREZ.EOP.Contracts.DTOs.Authentications.VerifyEmail;
|
|
|
|
namespace AMREZ.EOP.Abstractions.Applications.UseCases.Authentications;
|
|
|
|
public interface IVerifyEmailUseCase
|
|
{
|
|
Task<bool> ExecuteAsync(VerifyEmailRequest request, CancellationToken ct = default);
|
|
} |