From 8178188bc314cba761ca09c62225c7cf9be5fb9e Mon Sep 17 00:00:00 2001 From: quin lynch Date: Thu, 7 Oct 2021 01:16:21 -0300 Subject: [PATCH] Update IApplicationCommandInteractionData summaries --- .../Interactions/IApplicationCommandInteractionData.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandInteractionData.cs b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandInteractionData.cs index ec452180a..3d1a0349a 100644 --- a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandInteractionData.cs +++ b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandInteractionData.cs @@ -12,17 +12,17 @@ namespace Discord public interface IApplicationCommandInteractionData { /// - /// The snowflake id of this command. + /// Gets the snowflake id of this command. /// ulong Id { get; } /// - /// The name of this command. + /// Gets the name of this command. /// string Name { get; } /// - /// The params + values from the user. + /// Gets the options that the user has provided. /// IReadOnlyCollection Options { get; } }