Basic authentication

This commit is contained in:
2015-06-04 00:27:36 +02:00
parent f314044521
commit 8d906ab609
10 changed files with 495 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
namespace Scrummer.Code.Entities
{
public class User
{
public string Name { get; set; }
public string Email { get; set; }
public string PasswordHash { get; set; }
public string PasswordSalt { get; set; }
}
}