6 lines
146 B
C#
6 lines
146 B
C#
namespace SharpChat;
|
|
|
|
public interface ClientCommand {
|
|
bool IsMatch(ClientCommandContext ctx);
|
|
Task Dispatch(ClientCommandContext ctx);
|
|
}
|