mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-03-06 15:06:09 +00:00
Improve performance (#162)
This commit is contained in:
17
DiscordChatExporter.Core.Models/Reaction.cs
Normal file
17
DiscordChatExporter.Core.Models/Reaction.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user