using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; namespace HealthchoiceMVC.Models { public class user_link { [Key] public int user_link_key {get;set;} public string UserId {get;set;} public int entity_key {get;set;} public string entity_type {get;set;} public string modified_by_key {get;set;} public DateTime modified_dt {get;set;} } }