BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/IConversationStorage.cs
2023-09-09 15:13:19 -05:00

9 lines
259 B
C#

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