Browse Source

Update IApplicationCommand summaries

pull/1923/head
quin lynch 3 years ago
parent
commit
7255fd5bfe
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      src/Discord.Net.Core/Entities/Interactions/IApplicationCommand.cs

+ 5
- 5
src/Discord.Net.Core/Entities/Interactions/IApplicationCommand.cs View File

@@ -17,27 +17,27 @@ namespace Discord
ulong ApplicationId { get; } ulong ApplicationId { get; }


/// <summary> /// <summary>
/// The type of the command
/// Gets the type of the command
/// </summary> /// </summary>
ApplicationCommandType Type { get; } ApplicationCommandType Type { get; }


/// <summary> /// <summary>
/// The name of the command.
/// Gets the name of the command.
/// </summary> /// </summary>
string Name { get; } string Name { get; }


/// <summary> /// <summary>
/// The description of the command.
/// Gets the description of the command.
/// </summary> /// </summary>
string Description { get; } string Description { get; }


/// <summary> /// <summary>
/// Whether the command is enabled by default when the app is added to a guild.
/// Gets whether or not the command is enabled by default when the app is added to a guild.
/// </summary> /// </summary>
bool IsDefaultPermission { get; } bool IsDefaultPermission { get; }


/// <summary> /// <summary>
/// If the option is a subcommand or subcommand group type, this nested options will be the parameters.
/// Gets the options for this application command.
/// </summary> /// </summary>
IReadOnlyCollection<IApplicationCommandOption> Options { get; } IReadOnlyCollection<IApplicationCommandOption> Options { get; }




Loading…
Cancel
Save