sharp-chat/SharpChat/ClientCommand.cs
2025-04-26 22:28:41 +00:00

6 lines
164 B
C#

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