From 7255fd5bfec23239ee2adefd882eedd906ab76bf Mon Sep 17 00:00:00 2001 From: quin lynch Date: Thu, 7 Oct 2021 01:17:36 -0300 Subject: [PATCH] Update IApplicationCommand summaries --- .../Entities/Interactions/IApplicationCommand.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommand.cs b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommand.cs index 3fe53b72c..dd192958d 100644 --- a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommand.cs +++ b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommand.cs @@ -17,27 +17,27 @@ namespace Discord ulong ApplicationId { get; } /// - /// The type of the command + /// Gets the type of the command /// ApplicationCommandType Type { get; } /// - /// The name of the command. + /// Gets the name of the command. /// string Name { get; } /// - /// The description of the command. + /// Gets the description of the command. /// string Description { get; } /// - /// 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. /// bool IsDefaultPermission { get; } /// - /// If the option is a subcommand or subcommand group type, this nested options will be the parameters. + /// Gets the options for this application command. /// IReadOnlyCollection Options { get; }