Browse Source

Fix SocketSlashCommandData access modifier. (#237)

Fixes #229
pull/1923/head
Emily GitHub 3 years ago
parent
commit
ae3f60bcde
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.WebSocket/Entities/Interaction/Slash Commands/SocketSlashCommand.cs

+ 1
- 1
src/Discord.Net.WebSocket/Entities/Interaction/Slash Commands/SocketSlashCommand.cs View File

@@ -11,7 +11,7 @@ namespace Discord.WebSocket
/// <summary>
/// The data associated with this interaction.
/// </summary>
private new SocketSlashCommandData Data { get; }
public new SocketSlashCommandData Data { get; }

internal SocketSlashCommand(DiscordSocketClient client, Model model, ISocketMessageChannel channel)
: base(client, model, channel)


Loading…
Cancel
Save