mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-02 16:19:12 +00:00
17 lines
361 B
C#
17 lines
361 B
C#
namespace DiscordChatExporter.Core.Models
|
|
{
|
|
// https://discordapp.com/developers/docs/resources/channel#reaction-object
|
|
|
|
public class Reaction
|
|
{
|
|
public int Count { get; }
|
|
|
|
public Emoji Emoji { get; }
|
|
|
|
public Reaction(int count, Emoji emoji)
|
|
{
|
|
Count = count;
|
|
Emoji = emoji;
|
|
}
|
|
}
|
|
} |