sharp-chat/SharpChat/ClientCommand.cs

7 lines
146 B
C#
Raw Permalink Normal View History

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