Files
SPT-Server-Build/Core/Helpers/Dialogue/SptDialogueChatBot.cs
T
2025-01-11 21:01:32 +00:00

20 lines
423 B
C#

using Core.Annotations;
using Core.Models.Eft.Dialog;
using Core.Models.Eft.Profile;
namespace Core.Helpers.Dialogue;
[Injectable]
public class SptDialogueChatBot : IDialogueChatBot
{
public UserDialogInfo GetChatBot()
{
throw new NotImplementedException();
}
public string HandleMessage(string sessionId, SendMessageRequest request)
{
throw new NotImplementedException();
}
}