12 lines
232 B
Dart
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,
|
|
});
|
|
}
|