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 ContactClass { [Key] public int ContactClassId { get; set; } [Required] [Display(Name = "Contact Class")] [MaxLength(50)] public string Description { get; set; } public virtual ICollection PersonContacts { get; set; } } }