feat: Support the WEBHOOKS_UPDATED event (#2384)

Co-authored-by: Armano den Boef <68127614+Rozen4334@users.noreply.github.com>
This commit is contained in:
CottageDwellingCat
2022-08-01 10:38:10 -05:00
committed by GitHub
parent 246282dda3
commit 010e8e828f
4 changed files with 60 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
using Newtonsoft.Json;
namespace Discord.API.Gateway
{
internal class WebhooksUpdatedEvent
{
[JsonProperty("guild_id")]
public ulong GuildId { get; set; }
[JsonProperty("channel_id")]
public ulong ChannelId { get; set; }
}
}