Browse Source

Update RestMessageComponentData.cs

pull/2099/head
Quin Lynch 3 years ago
parent
commit
68a25f135c
1 changed files with 3 additions and 9 deletions
  1. +3
    -9
      src/Discord.Net.Rest/Entities/Interactions/MessageComponents/RestMessageComponentData.cs

+ 3
- 9
src/Discord.Net.Rest/Entities/Interactions/MessageComponents/RestMessageComponentData.cs View File

@@ -12,19 +12,13 @@ namespace Discord.Rest
/// </summary>
public class RestMessageComponentData : IComponentInteractionData, IDiscordInteractionData
{
/// <summary>
/// Gets the components Custom Id that was clicked.
/// </summary>
/// <inheritdoc/>
public string CustomId { get; }

/// <summary>
/// Gets the type of the component clicked.
/// </summary>
/// <inheritdoc/>
public ComponentType Type { get; }

/// <summary>
/// Gets the value(s) of a <see cref="SelectMenuComponent"/> interaction response.
/// </summary>
/// <inheritdoc/>
public IReadOnlyCollection<string> Values { get; }

/// <inheritdoc/>


Loading…
Cancel
Save