mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-02-22 22:46:01 +01:00
10 lines
115 B
C#
10 lines
115 B
C#
using System;
|
|
|
|
namespace DHT.Server.Data;
|
|
|
|
[Flags]
|
|
public enum EmojiFlags : ushort {
|
|
None = 0,
|
|
Animated = 0b1,
|
|
}
|