karmabot/JetKarmaBot/Commands/IChatCommand.cs

13 lines
272 B
C#

using System.Collections.Generic;
using Telegram.Bot.Args;
namespace JetKarmaBot.Commands
{
public interface IChatCommand
{
IReadOnlyCollection<string> Names { get; }
bool Execute(CommandString cmd, MessageEventArgs messageEventArgs);
}
}