sharp-chat/SharpChat.Protocol.IRC/ClientCommands/IClientCommand.cs
2022-08-30 17:05:29 +02:00

10 lines
228 B
C#

namespace SharpChat.Protocol.IRC.ClientCommands {
public interface IClientCommand {
string CommandName { get; }
bool RequireSession { get; }
void HandleCommand(ClientCommandContext ctx);
}
}