25 lines
547 B
Dart
25 lines
547 B
Dart
import 'package:image_picker/image_picker.dart';
|
|
|
|
class BotAssistantsReqModel {
|
|
final String type;
|
|
final XFile? image;
|
|
final String name;
|
|
final int botId;
|
|
final String prompt;
|
|
final List<XFile>? files;
|
|
final String? youtubeLink;
|
|
final List<String>? webLinks;
|
|
final bool isPrivate;
|
|
|
|
BotAssistantsReqModel(
|
|
{required this.type,
|
|
required this.name,
|
|
required this.botId,
|
|
required this.prompt,
|
|
this.image,
|
|
this.files,
|
|
this.youtubeLink,
|
|
this.webLinks,
|
|
this.isPrivate = true});
|
|
}
|