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 public interface IApplicationCommandOptionChoice
{ {
/// <summary> /// <summary>
/// 1-100 character choice name.
/// Gets the name of this choice.
/// </summary> /// </summary>
string Name { get; } string Name { get; }


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




Loading…
Cancel
Save