sharp-chat/SharpChat/ClientCommand.cs

6 lines
146 B
C#

namespace SharpChat;
public interface ClientCommand {
bool IsMatch(ClientCommandContext ctx);
Task Dispatch(ClientCommandContext ctx);
}