using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace HealthchoiceMVC.Models { public class NetworkAffiliation { [Key] public int NetworkAffiliationId { get; set; } [Required] [Display(Name = "Network Name")] [MaxLength(150)] [StringLength(150)] public string NetworkName { get; set; } } }