We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 958d286 commit 9cb6ffdCopy full SHA for 9cb6ffd
src/Discord.Net.Interactions/Entities/ParameterChoice.cs
@@ -15,7 +15,12 @@ public class ParameterChoice
15
/// </summary>
16
public object Value { get; }
17
18
- internal ParameterChoice(string name, object value)
+ /// <summary>
19
+ /// Initializes a new <see cref="ParameterChoice"/>.
20
+ /// </summary>
21
+ /// <param name="name">Name of this choice.</param>
22
+ /// <param name="value">Value of this choice.</param>
23
+ public ParameterChoice(string name, object value)
24
{
25
Name = name;
26
Value = value;
0 commit comments