Files
EmptyMauiApp/MauiApp/Core/RestClient/AuthenticationApi/Contracts/IAuthenticationApiRestClient.cs
2023-10-18 19:02:51 +02:00

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);
}