From d3740423211bb34b68a592907b68a15f89f0a2c9 Mon Sep 17 00:00:00 2001 From: quin lynch Date: Thu, 7 Oct 2021 01:22:06 -0300 Subject: [PATCH] update ApplicationCommandOptionChoiceProperties summaries --- .../Entities/Interactions/ApplicationCommandOptionChoice.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Interactions/ApplicationCommandOptionChoice.cs b/src/Discord.Net.Core/Entities/Interactions/ApplicationCommandOptionChoice.cs index 4a1339dc2..63b6f6df8 100644 --- a/src/Discord.Net.Core/Entities/Interactions/ApplicationCommandOptionChoice.cs +++ b/src/Discord.Net.Core/Entities/Interactions/ApplicationCommandOptionChoice.cs @@ -14,7 +14,7 @@ namespace Discord private string _name; private object _value; /// - /// The name of this choice. + /// Gets or sets the name of this choice. /// public string Name { @@ -30,7 +30,7 @@ namespace Discord } /// - /// The value of this choice. + /// Gets or sets the value of this choice. /// /// Discord only accepts int and string as the input. ///