Retail_manager/RMWPFUserInterface/Models/AuthenticatedUser.cs
s459315 ab827d849c Wired up login form to API
Connected the login form button to the Authentication endpoint (/token). Gets back bearer token or exception if failed
2022-07-08 17:31:58 +02:00

15 lines
301 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RMWPFUserInterface.Models
{
public class AuthenticatedUser
{
public string Access_Token { get; set; }
public string UserName { get; set; }
}
}