finished off helpers, added few more types (might not be used)

This commit is contained in:
CWX
2025-01-09 16:43:49 +00:00
parent 75355ef850
commit cc26e1468c
45 changed files with 2368 additions and 76 deletions
+25 -3
View File
@@ -1,6 +1,28 @@
namespace Core.Helpers.Dialogue;
using Core.Helpers.Dialog.Commando;
using Core.Models.Eft.Dialog;
using Core.Models.Eft.Profile;
public class AbstractDialogChatBot
namespace Core.Helpers.Dialogue;
public class AbstractDialogChatBot : IDialogueChatBot
{
public UserDialogInfo GetChatBot()
{
throw new NotImplementedException();
}
public string HandleMessage(string sessionId, SendMessageRequest request)
{
throw new NotImplementedException();
}
public void RegisterChatCommand(IChatCommand chatCommand)
{
throw new NotImplementedException();
}
protected string GetUnrecognizedCommandMessage()
{
throw new NotImplementedException();
}
}