sharp-chat/SharpChat.Protocol.IRC/ClientCommands/IClientCommand.cs

10 lines
228 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
namespace SharpChat.Protocol.IRC.ClientCommands {
public interface IClientCommand {
string CommandName { get; }
bool RequireSession { get; }
void HandleCommand(ClientCommandContext ctx);
}
}