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_NonAcademicAwards { [Key] public int AwardID { get; set; } public string Name { get; set; } public string Description { get; set; } public Nullable CreateDate { get; set; } } }