17 lines
339 B
C#
17 lines
339 B
C#
using Core.Models.Eft.Profile;
|
|
|
|
namespace Core.Helpers.Dialogue;
|
|
|
|
public class CommandoDialogChatBot : AbstractDialogChatBot
|
|
{
|
|
public UserDialogInfo GetChatBot()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected string GetUnrecognizedCommandMessage()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|