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

13 lines
No EOL
378 B
C#

namespace WebApi.Entities
{
public class User
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Username { get; set; }
public string Initials { get; set; }
public byte[] PasswordHash { get; set; }
public byte[] PasswordSalt { get; set; }
}
}