namespace Discord.Commands { public enum MultiMatchHandling { /// Indicates that when multiple results are found, an exception should be thrown. Exception, /// Indicates that when multiple results are found, the best result should be chosen. Best } }