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.Services.Integration; using Neo.Afx.ViewModels; namespace Neo.LegitimateLicences.OperatingLicenceConsole { public class VehicleModel : ResponsiveAppBaseModel { public Licence OperatingLicence { get; set; } public IEnumerable Vehicles { get; set; } public List Lookups { get; set; } public long entityID { get; set; } public long itemID { get; set; } public long DocumentStoreLocationID { get; set; } public IEnumerable VehicleDocuments { get; set; } public bool ShowFlagVinAsCorrectButton { get; set; } public bool IsVehicleDelinked { get; set; } } }