//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace Neo.Legitimate.ApplicationRequest.Models { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class ApplicationExistingVehicleDetail { public long ApplicationRequestDetailID { get; set; } public bool IsStillToBeAcquired { get; set; } public Nullable VehicleMakeID { get; set; } public string VehicleMakeDescription { get; set; } public Nullable VehicleTypeID { get; set; } public string VIN { get; set; } public string EngineNumber { get; set; } public string YearOfManufacture { get; set; } public string VehicleRegistrationNumber { get; set; } public Nullable SeatedCapacity { get; set; } public Nullable StandingCapacity { get; set; } public string RoadworthyCertificateNumber { get; set; } public Nullable RoadworthyCertificateDocID { get; set; } public Nullable RoadworthyExpiryDate { get; set; } public Nullable GrossMass { get; set; } public Nullable VerifiedVehicleID { get; set; } public Nullable CarryingCapacityID { get; set; } [ScriptIgnore] public virtual ApplicationRequestDetail ApplicationRequestDetail { get; set; } [ScriptIgnore] public virtual VehicleMake VehicleMake { get; set; } [ScriptIgnore] public virtual VehicleType VehicleType { get; set; } } }