using RMWPFUserInterface.Models; using System.Threading.Tasks; namespace RMWPFInterfaceLibrary.Api { public interface IAPIHelper { Task Authenticate(string username, string password); Task GetLogedInUserInfo(string token); } }