2023-11-09 21:11:36 +00:00
|
|
|
namespace BotSharp.Abstraction.Conversations;
|
|
|
|
|
|
|
|
|
|
public interface IConversationAttachmentService
|
|
|
|
|
{
|
|
|
|
|
string GetDirectory(string conversationId);
|
2024-05-03 22:24:18 +00:00
|
|
|
IEnumerable<OutputFileModel> GetConversationFiles(string conversationId, string messageId);
|
|
|
|
|
string? GetMessageFile(string conversationId, string messageId, string fileType, int index);
|
2024-05-03 19:57:44 +00:00
|
|
|
void SaveConversationFiles(List<BotSharpFile> files);
|
2023-11-09 21:11:36 +00:00
|
|
|
}
|