mirror of
https://github.com/Jetsparrow/karmabot.git
synced 2026-01-21 00:56:09 +03:00
13 lines
319 B
C#
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; }
|
|
}
|
|
} |