namespace Discord.Commands
{
///
/// Specifies the behavior of the command execution workflow.
///
///
///
public enum RunMode
{
///
/// The default behaviour set in .
///
Default,
///
/// Executes the command on the same thread as gateway one.
///
Sync,
///
/// Executes the command on a different thread from the gateway one.
///
Async
}
}