Browse Source

Revert format-on-commit changes

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

+ 4
- 2
src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs View File

@@ -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; }
}
}

Loading…
Cancel
Save