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