|
@@ -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; } |
|
|
|
|
|
|
|
|