9 lines
301 B
C#
9 lines
301 B
C#
using MauiApp.Core.RestClient.Contracts;
|
|
using MauiApp.Core.RestClient.IntegryApi.Dto;
|
|
|
|
namespace MauiApp.Core.RestClient.AuthenticationApi.Contracts;
|
|
|
|
public interface IAuthenticationApiRestClient : IApiRestClient
|
|
{
|
|
Task<LoginResponseDto> RefreshToken(string refreshToken, string profileDb);
|
|
} |