using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SharpChat.Protocol.IRC.ClientCommands { public class SummonCommand : IClientCommand { public const string NAME = @"SUMMON"; public string CommandName => NAME; public bool RequireSession => true; public void HandleCommand(ClientCommandContext args) { // should inform that summon is disabled } } }