using Neo.LegitimateLicences.ApplicationRequest.Models.Database; using Neo.LegitimateLicences.Common.ViewModels; using Neo.LegitimateLicences.Data.Models; using System; using System.Collections.Generic; using System.Linq; using System.Web; using Neo.Afx.ViewModels; using Neo.Afx.Services.Documents.Entities; using Neo.Afx.Services.Workflows.Entities; using Neo.LegitimateLicences.ApplicationRequest; namespace Neo.LegitimateLicences.AdjudicationConsole { public class ApplicationDetailsModel : ConsoleModel { public Data.Models.Vw_ApplicationDetails ApplicationView { get; set; } public ApplicationDetail Application { get; set; } public List GazetteDetails { get; set; } public List ApplicationAdjudications { get; set; } public long ApplicationAdjudicationID { get; set; } public bool CanCaptureDecision { get; set; } public string LicenceReferenceNumber { get; set; } public List Lookups { get; set; } public List Documents {get;set;} public ApplicationRequestBaseModel ApplicationRequestBaseModel { get; set; } public object Adjudications { get; set; } public bool IsChildApplication { get; set; } public bool IsTAT { get; set; } public string ParentApplicationNumber { get; set; } public ApplicationDetail RelatedTATApplicationDetails { get; set; } public Nullable FinalDecisionID { get; set; } } }