sharp-chat/SharpChat/Commands/ISockChatClientCommand.cs

7 lines
201 B
C#
Raw Normal View History

namespace SharpChat.Commands {
public interface ISockChatClientCommand {
bool IsMatch(SockChatClientCommandContext ctx);
void Dispatch(SockChatClientCommandContext ctx);
}
}