using System.Collections.Generic; using Neo.Legitimate.Data.Models; using Pilotfish.Afx.Services.Forms.Entities; using Pilotfish.Afx.Services.Comments.Entities; namespace Neo.Legitimate.VerificationConsole.Models { public class AuditModel : Pilotfish.Afx.Models.ConsoleModel { public IEnumerable Comments { get; set; } public IEnumerable Documents { get; set; } public IEnumerable FormChecklistResults { get; set; } public IEnumerable DocumentChecks { get; set; } public Vw_ApplicationRequestDetails Application { get; set; } public long entityID { get; set; } public long itemID { get; set; } public bool? CanAction { get; set; } } }