sharp-chat/SharpChat/IUserCommand.cs

7 lines
162 B
C#

namespace SharpChat {
public interface IUserCommand {
bool IsMatch(UserCommandContext ctx);
void Dispatch(UserCommandContext ctx);
}
}