using System.Collections.Generic; using Neo.Legitimate.Data.Models; namespace Neo.Legitimate.OperatingLicenceConsole.Models { public class VehicleModel : Pilotfish.Afx.Models.ConsoleModel { public Licence OperatingLicence { get; set; } public IEnumerable Vehicles { get; set; } public IEnumerable VehicleTypes { get; set; } public IEnumerable CarryingCapacities { get; set; } public IEnumerable VehicleMakes { 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; } } }