BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/IConversationStorage.cs
2024-10-07 16:35:39 -05:00

8 lines
214 B
C#

namespace BotSharp.Abstraction.Conversations;
public interface IConversationStorage
{
void Append(string conversationId, RoleDialogModel dialog);
List<RoleDialogModel> GetDialogs(string conversationId);
}