| @@ -17,27 +17,27 @@ namespace Discord | |||||
| ulong ApplicationId { get; } | ulong ApplicationId { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// The type of the command | |||||
| /// Gets the type of the command | |||||
| /// </summary> | /// </summary> | ||||
| ApplicationCommandType Type { get; } | ApplicationCommandType Type { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// The name of the command. | |||||
| /// Gets the name of the command. | |||||
| /// </summary> | /// </summary> | ||||
| string Name { get; } | string Name { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// The description of the command. | |||||
| /// Gets the description of the command. | |||||
| /// </summary> | /// </summary> | ||||
| string Description { get; } | string Description { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// Whether the command is enabled by default when the app is added to a guild. | |||||
| /// Gets whether or not the command is enabled by default when the app is added to a guild. | |||||
| /// </summary> | /// </summary> | ||||
| bool IsDefaultPermission { get; } | bool IsDefaultPermission { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// If the option is a subcommand or subcommand group type, this nested options will be the parameters. | |||||
| /// Gets the options for this application command. | |||||
| /// </summary> | /// </summary> | ||||
| IReadOnlyCollection<IApplicationCommandOption> Options { get; } | IReadOnlyCollection<IApplicationCommandOption> Options { get; } | ||||