diff --git a/src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs b/src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs index 7053061de..5b976dfbb 100644 --- a/src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs +++ b/src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs @@ -4,8 +4,10 @@ namespace Discord.API.Gateway { internal class WebhooksUpdatedEvent { - [JsonProperty("guild_id")] public ulong GuildId { get; set; } + [JsonProperty("guild_id")] + public ulong GuildId { get; set; } - [JsonProperty("channel_id")] public ulong ChanelId { get; set; } + [JsonProperty("channel_id")] + public ulong ChanelId { get; set; } } }