export interface VehicleViewModel { id: string; name: string; location: string; vehicleTypeId: string; } export interface CreateVehicleViewModel { name: string; location: string; vehicleTypeId: string; } export interface UpdateVehicleViewModel { id: string; name: string; location: string; vehicleTypeId: string; }