You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
using Model = Discord.API.Reaction;
|
|
|
|
namespace Discord.Rest
|
|
{
|
|
/// <summary>
|
|
/// Represents a REST reaction object.
|
|
/// </summary>
|
|
public class RestReaction : IReaction
|
|
{
|
|
/// <inheritdoc />
|
|
public IEmote Emote { get; }
|
|
/// <summary>
|
|
/// Gets the number of reactions added.
|
|
/// </summary>
|
|
public int Count { get; }
|
|
/// <summary>
|
|
/// Gets whether the reactions is added by the user.
|
|
/// </summary>
|
|
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);
|
|
}
|
|
}
|
|
}
|