15 lines
303 B
C#
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; }
|
|
}
|
|
}
|