18 lines
377 B
C#
18 lines
377 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Website.Models
|
|
{
|
|
public sealed class RegisterViewModel
|
|
{
|
|
[Required]
|
|
public string Username { get; set; }
|
|
|
|
[Required]
|
|
public string Password { get; set; }
|
|
|
|
[Required]
|
|
[Compare(nameof(Password))]
|
|
[Display(Name = "Password confirmation")]
|
|
public string PasswordConfirm { get; set; }
|
|
}
|
|
} |