8 lines
253 B
C#
8 lines
253 B
C#
using AMREZ.EOP.Contracts.DTOs.Authentications.Refresh;
|
|
|
|
namespace AMREZ.EOP.Abstractions.Applications.UseCases.Authentications;
|
|
|
|
public interface IRefreshUseCase
|
|
{
|
|
Task<RefreshResponse?> ExecuteAsync(RefreshRequest request, CancellationToken ct);
|
|
} |