karmabot/JetKarmaBot/ICommandRouter.cs
2019-11-17 13:36:09 +00:00

13 lines
319 B
C#

using JetKarmaBot.Commands;
namespace JetKarmaBot
{
public interface ICommandRouter
{
Telegram.Bot.Types.User Me { get; set; }
string GetHelpText(Locale loc);
string GetHelpTextFor(string commandname, Locale loc);
void Add(IChatCommand c);
string Prefix { get; }
}
}