using Model = Discord.API.Reaction; namespace Discord.Rest { /// /// Represents a REST reaction object. /// public class RestReaction : IReaction { /// public IEmote Emote { get; } /// /// Gets the number of reactions added. /// public int Count { get; } /// /// Gets whether the reactions is added by the user. /// public bool Me { get; } internal RestReaction(IEmote emote, int count, bool me) { Emote = emote; Count = count; Me = me; } internal static RestReaction Create(Model model) { IEmote emote; if (model.Emoji.Id.HasValue) emote = new Emote(model.Emoji.Id.Value, model.Emoji.Name, model.Emoji.Animated.GetValueOrDefault()); else emote = new Emoji(model.Emoji.Name); return new RestReaction(emote, model.Count, model.Me); } } }