using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Neo.LegitimateLicences.LicenceIssueRequest.Models { public class LicenceIssueRequesteNatisModel { public string MVRegN { get; set; } public string LicN { get; set; } public string VinOrChassis { get; set; } public string EngineNo { get; set; } public string VehicleModel { get; set; } public string VehicleMake { get; set; } public string OwnerIdNo { get; set; } public string OwnerName { get; set; } public string IdDocType { get; set; } public string ErrorMessage { get; set; } public bool CookieCheckPassed { get; set; } public string YearOfManufacture { get; set; } public string VehicleType { get; set; } public string GrossMass { get; set; } public string Tare { get; set; } public string SeatedCapacity { get; set; } public string StandingCapacity { get; set; } public string CarryingCapacity { get; set; } public short? VehicleMakeID { get; set; } public short? VehicleModelID { get; set; } public short? VehicleTypeID { get; set; } public short? CarryingCapacityID { get; set; } } }