using Newtonsoft.Json;
namespace Maki.Structures.Messages
{
///
/// Discord API Message Reaction structure
///
internal struct MessageReaction
{
///
/// times this emoji has been used to react
///
[JsonProperty("count")]
public int Times;
///
/// whether the current user reacted using this emoji
///
[JsonProperty("me")]
public bool ByMe;
///
/// emoji information
///
[JsonProperty("emoji")]
public Emoji Emoji;
}
}