From e4842b839814dd06a2a939062ae9c1374ee7fbf7 Mon Sep 17 00:00:00 2001 From: quin lynch Date: Thu, 7 Oct 2021 01:14:39 -0300 Subject: [PATCH] Update IApplicationCommandOption summaries --- .../Interactions/IApplicationCommandOption.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandOption.cs b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandOption.cs index 5c2443c1b..457c04613 100644 --- a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandOption.cs +++ b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandOption.cs @@ -12,37 +12,37 @@ namespace Discord public interface IApplicationCommandOption { /// - /// The type of this . + /// Gets the type of this . /// ApplicationCommandOptionType Type { get; } /// - /// The name of this command option, 1-32 character name. + /// Gets the name of this command option, 1-32 character name. /// string Name { get; } /// - /// The discription of this command option, 1-100 character description. + /// Gets the discription of this command option, 1-100 character description. /// string Description { get; } /// - /// The first required option for the user to complete--only one option can be default. + /// Gets the first required option for the user to complete--only one option can be default. /// bool? IsDefault { get; } /// - /// If the parameter is required or optional, default is . + /// Gets if the parameter is required or optional, default is . /// bool? IsRequired { get; } /// - /// Choices for string and int types for the user to pick from. + /// Gets a collection of choices for the user to pick from. /// IReadOnlyCollection? Choices { get; } /// - /// If the option is a subcommand or subcommand group type, this nested options will be the parameters. + /// Gets the nested options of this option. /// IReadOnlyCollection? Options { get; } }