BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/IConversationAttachmentService.cs

10 lines
398 B
C#
Raw Normal View History

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
}