Browse Source

Update IApplicationCommandInteractionData summaries

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

+ 3
- 3
src/Discord.Net.Core/Entities/Interactions/IApplicationCommandInteractionData.cs View File

@@ -12,17 +12,17 @@ namespace Discord
public interface IApplicationCommandInteractionData
{
/// <summary>
/// The snowflake id of this command.
/// Gets the snowflake id of this command.
/// </summary>
ulong Id { get; }

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

/// <summary>
/// The params + values from the user.
/// Gets the options that the user has provided.
/// </summary>
IReadOnlyCollection<IApplicationCommandInteractionDataOption> Options { get; }
}


Loading…
Cancel
Save