Browse Source

Update ApplicationCommandType summaries

pull/1923/head
quin lynch 3 years ago
parent
commit
35fe57bbfa
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      src/Discord.Net.Core/Entities/Interactions/ApplicationCommandTypes.cs

+ 4
- 4
src/Discord.Net.Core/Entities/Interactions/ApplicationCommandTypes.cs View File

@@ -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
} }


Loading…
Cancel
Save