Refactor, rearrange, reimplement reactions; receive over gateway

This commit is contained in:
Christopher F
2016-11-05 18:15:47 -04:00
parent 7018bc9c58
commit e2e2c4308d
15 changed files with 96 additions and 41 deletions

View File

@@ -6,7 +6,7 @@ using Newtonsoft.Json;
namespace Discord.API.Gateway
{
public class GatewayReaction : Reaction
public class GatewayReaction
{
[JsonProperty("user_id")]
public ulong UserId { get; set; }
@@ -15,6 +15,6 @@ namespace Discord.API.Gateway
[JsonProperty("channel_id")]
public ulong ChannelId { get; set; }
[JsonProperty("emoji")]
public Discord.API.Emoji Emoji { get; set; }
public Emoji Emoji { get; set; }
}
}