public MethodCommandTrigger(IrcBotPlugin <T> plugin, OnCommandAttribute attribute, MethodInfo method) : base(plugin, attribute) { Method = method; }
public PropertyCommandTrigger(IrcBotPlugin <T> plugin, OnCommandAttribute attribute, PropertyInfo property) : base(plugin, attribute) { Property = property; }
public CommandTrigger(IrcBotPlugin <T> plugin, OnCommandAttribute attribute) : base(plugin) { Attribute = attribute; }