Browse Source

Fix bad namespace declaration.

pull/2384/head
cat 2 years ago
parent
commit
4109e6303c
No known key found for this signature in database GPG Key ID: 8677E1B318109AB0
1 changed files with 6 additions and 7 deletions
  1. +6
    -7
      src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs

+ 6
- 7
src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs View File

@@ -1,12 +1,11 @@
using Newtonsoft.Json;

namespace Discord.API.Gateway;

internal class WebhooksUpdatedEvent
namespace Discord.API.Gateway
{
[JsonProperty("guild_id")]
public ulong GuildId { get; set; }
internal class WebhooksUpdatedEvent
{
[JsonProperty("guild_id")] public ulong GuildId { get; set; }

[JsonProperty("channel_id")]
public ulong ChanelId { get; set; }
[JsonProperty("channel_id")] public ulong ChanelId { get; set; }
}
}

Loading…
Cancel
Save