Browse Source

Fix summary in IApplicationCommandOptionChoice

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

+ 2
- 2
src/Discord.Net.Core/Entities/Interactions/IApplicationCommandOptionChoice.cs View File

@@ -12,12 +12,12 @@ namespace Discord
public interface IApplicationCommandOptionChoice
{
/// <summary>
/// 1-100 character choice name.
/// Gets the name of this choice.
/// </summary>
string Name { get; }

/// <summary>
/// value of the choice.
/// Gets the value of the choice.
/// </summary>
object Value { get; }



Loading…
Cancel
Save