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