sharp-chat/SharpChat.Protocol.SockChat/Commands/ICommand.cs

9 lines
245 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
using System.Collections.Generic;
namespace SharpChat.Protocol.SockChat.Commands {
public interface ICommand {
bool IsCommandMatch(string name, IEnumerable<string> args);
bool DispatchCommand(CommandContext ctx);
}
}