using MauiApp.Core.RestClient.Contracts; using MauiApp.Core.RestClient.IntegryApi.Dto; namespace MauiApp.Core.RestClient.AuthenticationApi.Contracts; public interface IAuthenticationApiRestClient : IApiRestClient { Task RefreshToken(string refreshToken, string profileDb); }