using System.Collections.Generic; using Neo.Legitimate.Data.Models; using Pilotfish.Afx.Services.Forms.Entities; using Pilotfish.Afx.Services.Comments.Entities; using Pilotfish.Afx.Services.Documents.Entities; namespace Neo.Legitimate.VerificationConsole.Models { public class VerificationModel : Pilotfish.Afx.Models.ConsoleModel { public IEnumerable Comments { get; set; } public List DocumentsAwaitingVerification { get; set; } public List DocumentQuestions { get; set; } public long CurrentDocumentID { get; set; } public Vw_ApplicationRequestDetails Application { get; set; } public Vw_LicenceIssueDetails LicenceIssueDetail { get; set; } public Vw_LicenceUpliftmentExtensionRequestDetails LicenceUpliftmentExtensionDetail { get; set; } public string AppOrLir { get; set; } public long entityID { get; set; } public long itemID { get; set; } public long WorkflowInstanceTaskID { get; set; } } }