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_WLCSupportingDocs { [Key] public int ID { get; set; } public string DocCategory { get; set; } public int WLCSubID { get; set; } public string FilePath { get; set; } public Nullable CreateDate { get; set; } } }