using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ACLib.P2.AppContext.Models { public partial class AC_NickNames { [Key] public int ID { get; set; } public int ApplicationID { get; set; } public int InstructorID { get; set; } public String NickName { get; set; } public Nullable UpdateDate { get; set; } } }