Files
SPT-Server-Build/Core/Helpers/Dialogue/SptDialogueChatBot.cs
T

18 lines
386 B
C#

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