mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-21 20:42:45 +01:00
9 lines
257 B
C#
9 lines
257 B
C#
namespace DHT.Server.Data;
|
|
|
|
public readonly struct Reaction {
|
|
public ulong? EmojiId { get; internal init; }
|
|
public string? EmojiName { get; internal init; }
|
|
public EmojiFlags EmojiFlags { get; internal init; }
|
|
public int Count { get; internal init; }
|
|
}
|