using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using System.Web.Mvc; using System.ComponentModel.DataAnnotations.Schema; namespace HealthchoiceMVC.Models { public class PersonType { [Key] public int PersonTypeId { get; set; } [Required] [Display(Name = "Person Type")] [MaxLength(50)] public string Description { get; set; } } }