7 lines
201 B
C#
7 lines
201 B
C#
|
namespace SharpChat.Commands {
|
|||
|
public interface ISockChatClientCommand {
|
|||
|
bool IsMatch(SockChatClientCommandContext ctx);
|
|||
|
void Dispatch(SockChatClientCommandContext ctx);
|
|||
|
}
|
|||
|
}
|