Files
Discord.Net/src/Discord.Net.API/Gateway/Reaction.cs
2016-12-23 16:57:29 -04:00

17 lines
412 B
C#

using Newtonsoft.Json;
namespace Discord.API.Gateway
{
public class Reaction
{
[JsonProperty("user_id")]
public ulong UserId { get; set; }
[JsonProperty("message_id")]
public ulong MessageId { get; set; }
[JsonProperty("channel_id")]
public ulong ChannelId { get; set; }
[JsonProperty("emoji")]
public Emoji Emoji { get; set; }
}
}