Files
Discord.Net/src/Discord.Net.WebSocket/API/Gateway/WebhooksUpdatedEvent.cs
2022-08-01 17:38:10 +02:00

14 lines
271 B
C#

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