sledgemapper/Sledgemapper.Shared/Entities/AuthenticateResponse.cs
Michele Scandura 194f3cbffa login flow
2020-11-10 12:14:21 +00:00

11 lines
No EOL
309 B
C#

namespace Sledgemapper.Shared.Entities
{
public class AuthenticateResponse
{
public string Id { get; set; }
public string Username { get; set; }
public string Firstname { get; set; }
public string LastName { get; set; }
public string Token { get; set; }
}
}