Skip to content

Instantly share code, notes, and snippets.

@nishanc
Last active May 5, 2019 15:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nishanc/cde0a2306312e8a8edffc91d5261479d to your computer and use it in GitHub Desktop.
Save nishanc/cde0a2306312e8a8edffc91d5261479d to your computer and use it in GitHub Desktop.
namespace JWTAuth.API.Models
{
public class User
{
public int Id { get; set; }
public string Username { get; set; }
public byte[] PasswordHash { get; set; }
public byte[] PasswordSalt { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment