9 lines
259 B
C#
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);
|
|
}
|