9 lines
228 B
C#
9 lines
228 B
C#
namespace SharpChat.Protocol.IRC.ClientCommands {
|
|
public interface IClientCommand {
|
|
string CommandName { get; }
|
|
|
|
bool RequireSession { get; }
|
|
|
|
void HandleCommand(ClientCommandContext ctx);
|
|
}
|
|
}
|