sledgemapper/Sledgemapper.Shared/Entities/AuthenticateResponse.cs
Michele Scandura e009ef07b0 cleanup
2020-11-10 12:47:09 +00:00

12 lines
No EOL
354 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; }
public string Initials { get; set; }
}
}