import type { VehicleTypeViewModel } from "../vehicleType/vehicleType.models"; export interface VehicleViewModel { id: string; name: string; location: string; vehicleTypeId: string; vehicleType: VehicleTypeViewModel; } export interface CreateVehicleViewModel { name: string; location: string; vehicleTypeId: string; } export interface UpdateVehicleViewModel { id: string; name: string; location: string; }