| @@ -7,22 +7,22 @@ using System.Threading.Tasks; | |||||
| namespace Discord | namespace Discord | ||||
| { | { | ||||
| /// <summary> | /// <summary> | ||||
| /// ApplicationCommandType is enum of current valid Application Command Types: Slash, User, Message | |||||
| /// Represents the types of application commands. | |||||
| /// </summary> | /// </summary> | ||||
| public enum ApplicationCommandType : byte | public enum ApplicationCommandType : byte | ||||
| { | { | ||||
| /// <summary> | /// <summary> | ||||
| /// ApplicationCommandType.Slash is Slash command type | |||||
| /// A Slash command type | |||||
| /// </summary> | /// </summary> | ||||
| Slash = 1, | Slash = 1, | ||||
| /// <summary> | /// <summary> | ||||
| /// ApplicationCommandType.User is Context Menu User command type | |||||
| /// A Context Menu User command type | |||||
| /// </summary> | /// </summary> | ||||
| User = 2, | User = 2, | ||||
| /// <summary> | /// <summary> | ||||
| /// ApplicationCommandType.Message is Context Menu Message command type | |||||
| /// A Context Menu Message command type | |||||
| /// </summary> | /// </summary> | ||||
| Message = 3 | Message = 3 | ||||
| } | } | ||||