public string Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public bool EmailVerified { get; set; }
public bool IsActive { get; set; }
public string HashedPassword { get; set; }
public string[] Policies { get; set; }
public static void Main()
Console.WriteLine("Hello!");
var ph = new Microsoft.AspNetCore.Identity.PasswordHasher<StoredUser>();
var hash = ph.HashPassword(null,"800529smartAWARE");
Console.WriteLine("Hash is " + hash);