mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-06-19 00:04:04 +03: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; }
|
|
}
|