//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace Neo.Legitimate.Data.Models { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class ApplicationAudit { public long ApplicationAuditID { get; set; } public long ApplicationRequestDetailID { get; set; } public short ApplicationAuditTypeID { get; set; } public long AuditedUserID { get; set; } public long AssignedToID { get; set; } public System.DateTime AssignedDate { get; set; } public Nullable AuditCompletedDate { get; set; } public Nullable AuditPassed { get; set; } public string AuditComments { get; set; } [ScriptIgnore] public virtual ApplicationRequestDetail ApplicationRequestDetail { get; set; } } }