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