import 'package:ai_chat_assistant/models/vehicle_cmd.dart'; class VehicleCommandResponse { final String? tips; final List commands; VehicleCommandResponse({ this.tips, required this.commands, }); }