8 lines
245 B
C#
8 lines
245 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SharpChat.Protocol.SockChat.Commands {
|
|
public interface ICommand {
|
|
bool IsCommandMatch(string name, IEnumerable<string> args);
|
|
bool DispatchCommand(CommandContext ctx);
|
|
}
|
|
}
|