12 lines
296 B
Dart
12 lines
296 B
Dart
import 'package:didvan/models/ai/bots_model.dart';
|
|
import 'package:didvan/models/ai/chats_model.dart';
|
|
|
|
class AiChatArgs {
|
|
final BotsModel bot;
|
|
final ChatsModel? chat;
|
|
final Prompts? prompts;
|
|
final bool? attach;
|
|
|
|
AiChatArgs({required this.bot, this.chat, this.prompts, this.attach});
|
|
}
|