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
{
/// <summary>
/// ApplicationCommandType is enum of current valid Application Command Types: Slash, User, Message
/// Represents the types of application commands.
/// </summary>
public enum ApplicationCommandType : byte
{
/// <summary>
/// ApplicationCommandType.Slash is Slash command type
/// A Slash command type
/// </summary>
Slash = 1,

/// <summary>
/// ApplicationCommandType.User is Context Menu User command type
/// A Context Menu User command type
/// </summary>
User = 2,

/// <summary>
/// ApplicationCommandType.Message is Context Menu Message command type
/// A Context Menu Message command type
/// </summary>
Message = 3
}


Loading…
Cancel
Save