Retail_manager/RMWPFInterfaceLibrary/Api/IAPIHelper.cs

13 lines
338 B
C#
Raw Normal View History

using RMWPFUserInterface.Models;
using System.Net.Http;
using System.Threading.Tasks;
namespace RMWPFInterfaceLibrary.Api
{
public interface IAPIHelper
{
HttpClient ApiClient { get; }
Task<AuthenticatedUser> Authenticate(string username, string password);
Task GetLogedInUserInfo(string token);
}
}