Files
ai_chat_assistant/lib/models/vehicle_cmd_response.dart

12 lines
232 B
Dart
Raw Normal View History

2025-08-12 13:36:42 +08:00
import 'package:ai_chat_assistant/models/vehicle_cmd.dart';
class VehicleCommandResponse {
final String? tips;
final List<VehicleCommand> commands;
VehicleCommandResponse({
this.tips,
required this.commands,
});
}