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? files; final String? youtubeLink; final List? 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}); }