Support "MESSAGE_REACTION_REMOVE_ALL" dispatch

This commit is contained in:
Christopher F
2016-11-11 16:28:07 -05:00
parent 6b5a4b3ee6
commit 983b50120d
4 changed files with 49 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
using Newtonsoft.Json;
namespace Discord.API.Gateway
{
public class RemoveAllReactionsEvent
{
[JsonProperty("channel_id")]
public ulong ChannelId { get; set; }
[JsonProperty("message_id")]
public ulong MessageId { get; set; }
}
}