10 lines
373 B
C#
10 lines
373 B
C#
namespace Sandbox.Models.ViewModels;
|
|
|
|
public class UserRegister
|
|
{
|
|
public string Email { get; set; } = string.Empty;
|
|
//[Required, StringLength(100, MinimumLength = 5)]
|
|
public string Password { get; set; } = string.Empty;
|
|
//[Compare("Password", ErrorMessage = "The password do not match.")]
|
|
public string ConfirmPassword { get; set; } = string.Empty;
|
|
} |