using System.ComponentModel.DataAnnotations;
namespace BlueWest.WebApi.Context.Users;
///
///
///
public class RegisterViewModel
{
///
/// Email
///
[Required]
[EmailAddress]
[Display(Name = "Email")]
public string Email { get; set; }
///
/// Password
///
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
///
/// ConfirmPassword
///
[DataType(DataType.Password)]
[Display(Name = "Confirm password")]
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
public ApplicationUser ToUser()
{
var newUser = new ApplicationUser();
newUser.Email = Email;
newUser.PasswordHash = Password;
return newUser;
}
}