using Neo.LegitimateLicences.Common.Helpers; using Neo.LegitimateLicences.Common.ViewModels; using Neo.LegitimateLicences.Data.Models; using Neo.Afx.Services.Documents.Entities; using Neo.Afx.Services.Workflows.Entities; using System.Collections.Generic; using Neo.Afx.Services.Comments.Entities; namespace Neo.LegitimateLicences.VerificationConsole { public class VerificationConsoleModel : ResponsiveAppBaseModel { public new long EntityID { get; set; } public new long ItemID { get; set; } public long WorkflowInstanceID { get; set; } public long WorkflowInstanceTaskID { get; set; } public string AppOrLir { get; set; } public List Documents { get; set; } public Vw_ApplicationDetails Application { get; set; } public Vw_LicenceIssueDetails LicenceIssueDetail { get; set; } public Vw_LicenceUpliftmentExtensionRequestDetails LicenceUpliftmentExtensionDetail { get; set; } public IEnumerable Comments { get; set; } } }