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