sharp-chat/SharpChat.Protocol.SockChat/Commands/ICommand.cs
2022-08-30 17:05:29 +02:00

9 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);
}
}