Files
Discord.Net/src/Discord.Net.WebSocket/API/Gateway/RemoveAllReactionsEvent.cs
2016-11-11 16:28:07 -05:00

13 lines
278 B
C#

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