24 lines
No EOL
514 B
C#
24 lines
No EOL
514 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Sledgemapper.Models.Users
|
|
{
|
|
public class RegisterModel
|
|
{
|
|
[Required]
|
|
public string FirstName { get; set; }
|
|
[Required]
|
|
public string UserName { get; set; }
|
|
|
|
[Required]
|
|
public string LastName { get; set; }
|
|
|
|
[Required]
|
|
public string Email { get; set; }
|
|
|
|
[Required]
|
|
public string Password { get; set; }
|
|
|
|
[Required]
|
|
public string Initials { get; set; }
|
|
}
|
|
} |