using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; namespace HealthchoiceMVC.Models { public class prov_user_link { [Key] public int prov_user_link_key {get;set;} public int prov_key {get;set;} public string UserId { get; set; } } }