karmabot/JetKarmaBot/Commands/IChatCommand.cs
2018-12-15 00:43:47 +03:00

13 lines
268 B
C#

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