Browse Source

Fixed public setter in RestGuildCommand

pull/1717/head
quin lynch 4 years ago
parent
commit
b631a11318
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Rest/Entities/Interactions/RestGuildCommand.cs

+ 1
- 1
src/Discord.Net.Rest/Entities/Interactions/RestGuildCommand.cs View File

@@ -15,7 +15,7 @@ namespace Discord.Rest
/// <summary>
/// The guild Id where this command originates.
/// </summary>
public ulong GuildId { get; set; }
public ulong GuildId { get; private set; }

internal RestGuildCommand(BaseDiscordClient client, ulong id, ulong guildId)
: base(client, id)


Loading…
Cancel
Save