using System.ComponentModel.DataAnnotations;
namespace HelloWorldMvcApp
public string FirstName { get; set; }
public string MiddleName { get; set; }
public string LastName { get; set; }
public int UserTypeId { get; set; }
public UserTypeEntity UserType { get; set; }
public string FirstName { get; set; }
public string MiddleName { get; set; }
public string LastName { get; set; }
public int UserTypeId { get; set; }
public UserTypeEntity UserType { get; set; }
public class UserTypeEntity
public int? Id { get; set; }
public System.Nullable<byte> UserLevel { get; set; }
public string Description { get; set; }