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