18 lines
386 B
C#
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();
|
|
}
|
|
}
|