using Neo.Afx.Services.Workflows.Entities; using Neo.Afx.ViewModels; using Neo.LegitimateLicences.ApplicationRequest.Models.Database; using Neo.LegitimateLicences.Common; using System; using System.Collections.Generic; using System.Linq; using System.Web; using Neo.LegitimateLicences.Logic.ApplicationLogic; namespace Neo.LegitimateLicences.ApplicationRequest { public class ApplicationRequestFormModel : ApplicationRequestBaseModel { public ApplicationLicenceRouteDetail TemporarySpecialApplicationLicenceRouteDetail { get; set; } public List UnassignedReceipts { get; set; } public string VehicleOptional { get; set; } public Nullable AmountDue { get; set; } public Nullable AmountPaid { get; set; } public Neo.LegitimateLicences.Data.Models.OfficeLocationSetupDocumentTemplate OfficeLocationDocumentTemplates { get; set; } public ApplicationDetail RelatedTATApplicationDetails { get; set; } public VehicleServiceTypeCollection VehicleServiceTypeCollection { get; set; } public Boolean IsUnscheduledService { get; set; } public Boolean IsGazettingBypassed { get; set; } public Boolean IsAdjudicationRequired { get; set; } } }