Files
Discord.Net/src/Discord.Net.Rest/API/Common/Reaction.cs
2017-01-01 23:28:42 -04:00

15 lines
303 B
C#

using Newtonsoft.Json;
namespace Discord.API
{
internal class Reaction
{
[JsonProperty("count")]
public int Count { get; set; }
[JsonProperty("me")]
public bool Me { get; set; }
[JsonProperty("emoji")]
public Emoji Emoji { get; set; }
}
}