namespace Discord.Commands
{
///
/// Specifies the behavior when multiple matches are found during the command parsing stage.
///
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
}
}