44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BlueWest.WebApi.Context.Users;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class RegisterViewModel
|
|
{
|
|
/// <summary>
|
|
/// Email
|
|
/// </summary>
|
|
[Required]
|
|
[EmailAddress]
|
|
[Display(Name = "Email")]
|
|
public string Email { get; set; }
|
|
|
|
/// <summary>
|
|
/// Password
|
|
/// </summary>
|
|
[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; }
|
|
public string Username { get; set; }
|
|
|
|
/// <summary>
|
|
/// ConfirmPassword
|
|
/// </summary>
|
|
[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;
|
|
newUser.UserName = Username;
|
|
return newUser;
|
|
}
|
|
} |