From 7a3da6bbffef5525cc84b57c9952b6d27e813092 Mon Sep 17 00:00:00 2001 From: quin lynch Date: Thu, 7 Oct 2021 01:24:39 -0300 Subject: [PATCH] Update SlashCommandProperties summaries --- .../Interactions/Slash Commands/SlashCommandProperties.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Interactions/Slash Commands/SlashCommandProperties.cs b/src/Discord.Net.Core/Entities/Interactions/Slash Commands/SlashCommandProperties.cs index e9b7222d4..9405b1881 100644 --- a/src/Discord.Net.Core/Entities/Interactions/Slash Commands/SlashCommandProperties.cs +++ b/src/Discord.Net.Core/Entities/Interactions/Slash Commands/SlashCommandProperties.cs @@ -7,13 +7,14 @@ using System.Threading.Tasks; namespace Discord { /// - /// A class used to create slash commands. + /// Represents a class used to create slash commands. /// public class SlashCommandProperties : ApplicationCommandProperties { internal override ApplicationCommandType Type => ApplicationCommandType.Slash; + /// - /// The discription of this command. + /// Gets or sets the discription of this command. /// public Optional Description { get; set; }