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