public virtual async Task <string> ExecuteAsync(CommandSource source) { return(await Task.FromResult <string>(string.Empty)); }
public CommandEvent(MessageContext context, SteamID caller, MessageParser parser, ChatCommand command, bool hadPermission) { Command = command; Source = new CommandSource(context, caller, parser, hadPermission); }
public virtual string Execute(CommandSource source) { return(string.Empty); }
public CommandEvent(CommandSource source, ChatCommand command) { Command = command; Source = source; }