mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-05-08 18:31:02 +03:00
9 lines
229 B
C#
9 lines
229 B
C#
namespace DHT.Server.Data {
|
|
public readonly struct Reaction {
|
|
public ulong? EmojiId { get; init; }
|
|
public string? EmojiName { get; init; }
|
|
public EmojiFlags EmojiFlags { get; init; }
|
|
public int Count { get; init; }
|
|
}
|
|
}
|