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