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