Browse Source

Update SlashCommandProperties summaries

pull/1923/head
quin lynch 3 years ago
parent
commit
7a3da6bbff
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/Discord.Net.Core/Entities/Interactions/Slash Commands/SlashCommandProperties.cs

+ 3
- 2
src/Discord.Net.Core/Entities/Interactions/Slash Commands/SlashCommandProperties.cs View File

@@ -7,13 +7,14 @@ using System.Threading.Tasks;
namespace Discord
{
/// <summary>
/// A class used to create slash commands.
/// Represents a class used to create slash commands.
/// </summary>
public class SlashCommandProperties : ApplicationCommandProperties
{
internal override ApplicationCommandType Type => ApplicationCommandType.Slash;

/// <summary>
/// The discription of this command.
/// Gets or sets the discription of this command.
/// </summary>
public Optional<string> Description { get; set; }



Loading…
Cancel
Save