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