From 4109e6303ccb2b6691bb76bac9b362ab24b66ffc Mon Sep 17 00:00:00 2001 From: cat Date: Sun, 10 Jul 2022 23:52:23 -0500 Subject: [PATCH] Fix bad namespace declaration. --- .../API/Gateway/WebhooksUpdatedEvent.cs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs b/src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs index 9ff2706d6..7053061de 100644 --- a/src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs +++ b/src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs @@ -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; } + } }