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