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
+14 -3
View File
@@ -1,6 +1,17 @@
namespace Core.Helpers.Dialogue;
using Core.Models.Eft.Dialog;
using Core.Models.Eft.Profile;
public class SptDialogueChatBot
namespace Core.Helpers.Dialogue;
public class SptDialogueChatBot : IDialogueChatBot
{
public UserDialogInfo GetChatBot()
{
throw new NotImplementedException();
}
public string HandleMessage(string sessionId, SendMessageRequest request)
{
throw new NotImplementedException();
}
}