| @@ -12,17 +12,17 @@ namespace Discord | |||||
| public interface IApplicationCommandInteractionData | public interface IApplicationCommandInteractionData | ||||
| { | { | ||||
| /// <summary> | /// <summary> | ||||
| /// The snowflake id of this command. | |||||
| /// Gets the snowflake id of this command. | |||||
| /// </summary> | /// </summary> | ||||
| ulong Id { get; } | ulong Id { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// The name of this command. | |||||
| /// Gets the name of this command. | |||||
| /// </summary> | /// </summary> | ||||
| string Name { get; } | string Name { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// The params + values from the user. | |||||
| /// Gets the options that the user has provided. | |||||
| /// </summary> | /// </summary> | ||||
| IReadOnlyCollection<IApplicationCommandInteractionDataOption> Options { get; } | IReadOnlyCollection<IApplicationCommandInteractionDataOption> Options { get; } | ||||
| } | } | ||||