Files
ai_chat_assistant/lib/models/vehicle_cmd_response.dart
Chen Li 130755f9e1 0812
2025-08-12 13:36:42 +08:00

12 lines
232 B
Dart

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