7 lines
162 B
C#
7 lines
162 B
C#
|
namespace SharpChat {
|
|||
|
public interface IUserCommand {
|
|||
|
bool IsMatch(UserCommandContext ctx);
|
|||
|
void Dispatch(UserCommandContext ctx);
|
|||
|
}
|
|||
|
}
|